Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A239002

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of partitions of n into distinct parts all of which are Fibonacci numbers greater than 1.
(history; published version)
#14 by Alois P. Heinz at Sat Mar 15 06:50:06 EDT 2014
STATUS

editing

approved

#13 by Alois P. Heinz at Sat Mar 15 06:50:03 EDT 2014
KEYWORD

nonn,easy,look,new

STATUS

approved

editing

#12 by Alois P. Heinz at Sat Mar 15 06:49:34 EDT 2014
STATUS

editing

approved

#11 by Alois P. Heinz at Sat Mar 15 06:47:44 EDT 2014
FORMULA

G.f.: Product_{i>=3} (1+x^Fibonacci(i)). - Alois P. Heinz, Mar 15 2014

#10 by Alois P. Heinz at Sat Mar 15 06:45:12 EDT 2014
MAPLE

F:= combinat[fibonacci]:

b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<3, 0,

b(n, i-1)+`if`(F(i)>n, 0, b(n-F(i), i-1))))

end:

a:= proc(n) local j; for j from ilog[(1+sqrt(5))/2](n+1)

while F(j+1)<=n do od; b(n, j)

end:

seq(a(n), n=0..100); # Alois P. Heinz, Mar 15 2014

#9 by Alois P. Heinz at Sat Mar 15 06:44:23 EDT 2014
LINKS

Alois P. Heinz, <a href="/A239002/b239002.txt">Table of n, a(n) for n = 0..10946</a>

#8 by Alois P. Heinz at Sat Mar 15 06:43:56 EDT 2014
DATA

1, 0, 1, 1, 0, 2, 0, 1, 2, 0, 2, 1, 0, 3, 0, 2, 2, 0, 3, 0, 1, 3, 0, 3, 2, 0, 4, 0, 2, 3, 0, 3, 1, 0, 4, 0, 3, 3, 0, 5, 0, 2, 4, 0, 4, 2, 0, 5, 0, 3, 3, 0, 4, 0, 1, 4, 0, 4, 3, 0, 6, 0, 3, 5, 0, 5, 2, 0, 6, 0, 4, 4, 0, 6, 0, 2, 5, 0, 5, 3, 0, 6, 0, 3, 4, 0, 4

STATUS

proposed

editing

#7 by Clark Kimberling at Fri Mar 14 14:15:55 EDT 2014
STATUS

editing

proposed

#6 by Clark Kimberling at Fri Mar 14 14:15:41 EDT 2014
NAME

Number of strict partitions of n using into distinct parts all of which are Fibonacci numbers > greater than 1.

STATUS

reviewed

editing

#5 by N. J. A. Sloane at Fri Mar 14 12:43:28 EDT 2014
STATUS

proposed

reviewed

Discussion
Fri Mar 14
12:46
N. J. A. Sloane: Also please add A000009 to the cross-references!
12:47
N. J. A. Sloane: Sorry for the duplicated "pink comment" - the OEIS is taking several minutes to respond and I can't tell if it has heard me or not