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!)
A338674 Expansion of Product_{k>=1} 1 / (1 - 5^(k-1)*x^k). 10
1, 1, 6, 31, 181, 931, 5431, 27931, 159806, 834806, 4697306, 24478556, 137931681, 717306681, 3989650431, 20958791056, 115494337931, 604881056681, 3333662306681, 17439531447306, 95396181837931, 501716543166056, 2725636758009806, 14311071572462931, 77793648720900431 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} p(n,k) * 5^(n-k), where p(n,k) = number of partitions of n into k parts.
a(n) ~ polylog(2, 1/5)^(1/4) * 5^(n - 1/2) * exp(2*sqrt(polylog(2, 1/5)*n)) / (sqrt(Pi)*n^(3/4)). - Vaclav Kotesovec, May 09 2021
MATHEMATICA
nmax = 24; CoefficientList[Series[Product[1/(1 - 5^(k - 1) x^k), {k, 1, nmax}], {x, 0, nmax}], x]
Table[Sum[Length[IntegerPartitions[n, {k}]] 5^(n - k), {k, 0, n}], {n, 0, 24}]
a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[d 5^(k - k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 24}]
CROSSREFS
Sequence in context: A036729 A321799 A275403 * A199320 A097176 A361306
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 23 2021
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)