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!)
A281689 Expansion of Sum_{k>=2} x^Fibonacci(k)/(1 - x^Fibonacci(k)) / Product_{k>=2} (1 - x^Fibonacci(k)). 2
1, 3, 6, 11, 18, 29, 42, 62, 86, 119, 159, 211, 273, 352, 446, 562, 697, 864, 1054, 1284, 1550, 1860, 2220, 2639, 3114, 3669, 4293, 5011, 5823, 6745, 7783, 8956, 10268, 11747, 13390, 15237, 17281, 19561, 22089, 24889, 27979, 31405, 35157, 39309, 43856, 48849, 54319, 60309, 66840, 73992, 81760, 90243 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Total number of parts in all partitions of n into Fibonacci parts (with a single type of 1).
Convolution of A003107 and A005086.
LINKS
FORMULA
G.f.: Sum_{k>=2} x^Fibonacci(k)/(1 - x^Fibonacci(k)) / Product_{k>=2} (1 - x^Fibonacci(k)).
a(n) = Sum_{k=1..n} k * A319394(n,k). - Alois P. Heinz, Sep 18 2018
EXAMPLE
a(5) = 18 because we have [5], [3, 2], [3, 1, 1], [2, 2, 1], [2, 1, 1, 1], [1, 1, 1, 1, 1] and 1 + 2 + 3 + 3 + 4 + 5 = 18.
MAPLE
h:= proc(n) option remember; `if`(n<1, 0, `if`((t->
issqr(t+4) or issqr(t-4))(5*n^2), n, h(n-1)))
end:
b:= proc(n, i) option remember; `if`(n=0 or i=1, [1, n],
b(n, h(i-1))+(p->p+[0, p[1]])(b(n-i, h(min(n-i, i)))))
end:
a:= n-> b(n, h(n))[2]:
seq(a(n), n=1..70); # Alois P. Heinz, Sep 18 2018
MATHEMATICA
Rest[CoefficientList[Series[Sum[x^Fibonacci[k]/(1 - x^Fibonacci[k]), {k, 2, 20}]/Product[1 - x^Fibonacci[k], {k, 2, 20}], {x, 0, 52}], x]]
CROSSREFS
Sequence in context: A095944 A014284 A118482 * A026905 A286272 A212147
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 27 2017
STATUS
approved

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 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)