login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A319397 Number of partitions of n into exactly four positive Fibonacci numbers. 5

%I #7 Dec 08 2020 08:36:33

%S 0,0,0,0,1,1,2,2,4,3,4,4,5,4,5,4,5,5,5,5,7,4,5,4,5,5,6,5,6,5,6,5,7,4,

%T 4,3,5,5,4,6,6,5,6,4,6,6,5,5,5,5,5,4,7,4,1,4,2,4,6,3,6,5,5,6,5,6,5,3,

%U 6,3,5,6,5,6,5,2,5,3,6,5,2,5,4,3,7,1,4

%N Number of partitions of n into exactly four positive Fibonacci numbers.

%H Alois P. Heinz, <a href="/A319397/b319397.txt">Table of n, a(n) for n = 0..17711</a>

%F a(n) = [x^n y^4] 1/Product_{j>=2} (1-y*x^A000045(j)).

%p h:= proc(n) option remember; `if`(n<1, 0, `if`((t->

%p issqr(t+4) or issqr(t-4))(5*n^2), n, h(n-1)))

%p end:

%p b:= proc(n, i, t) option remember; `if`(n=0, 1, `if`(i<1 or

%p t<1, 0, b(n, h(i-1), t)+b(n-i, h(min(n-i, i)), t-1)))

%p end:

%p a:= n-> (k-> b(n, h(n), k)-b(n, h(n), k-1))(4):

%p seq(a(n), n=0..120);

%t h[n_] := h[n] = If[n < 1, 0, If[Function[t, IntegerQ@Sqrt[t + 4] || IntegerQ@Sqrt[t - 4]][5 n^2], n, h[n - 1]]];

%t b[n_, i_, t_] := b[n, i, t] = If[n == 0, 1, If[i < 1 || t < 1, 0, b[n, h[i - 1], t] + b[n - i, h[Min[n - i, i]], t - 1]]];

%t a[n_] := With[{k = 4}, b[n, h[n], k] - b[n, h[n], k - 1]];

%t a /@ Range[0, 120] (* _Jean-François Alcover_, Dec 08 2020, after _Alois P. Heinz_ *)

%Y Column k=4 of A319394.

%Y Cf. A000045.

%K nonn

%O 0,7

%A _Alois P. Heinz_, Sep 18 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 10:38 EDT 2024. Contains 371791 sequences. (Running on oeis4.)