Define sets and
is the set of all possible sets that can be formed by taking union of one or more elements of . For example,
Find the number of distinct elements of .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let f n = ∣ F n ∣ . The number of elements of F n + 1 that contain n + 2 is f n + 1 − f n . There are two ways this can be done: either we add n + 2 to an element of F n containing n + 1 , or we add { n + 1 , n + 2 } to an element of F n − 2 or the empty set.
This gives the recurrence f n + 1 − f n = ( f n − f n − 1 ) + ( f n − 2 + 1 ) , which simplifies to f n + 1 = 2 f n − f n − 1 + f n − 2 + 1 .
Starting with f 0 = 0 , f 1 = 1 , f 2 = 3 and iterating gives f 1 5 = 5 8 4 1 .
You can see http://oeis.org/A077855 for more information.