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!)
A338645 Expansion of Product_{k>=1} (1 + x^k)^binomial(k+2,2). 4
1, 3, 9, 29, 78, 207, 526, 1284, 3054, 7084, 16071, 35748, 78167, 168195, 356754, 746772, 1544145, 3157056, 6387114, 12795366, 25397760, 49977262, 97542936, 188912466, 363196750, 693424803, 1315161528, 2478648920, 4643337213, 8648452782, 16019345259, 29515269060, 54104712129 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+1) * A027480(d) ) * a(n-k).
a(n) ~ (7/15)^(1/8) * 2^(-21/8) * n^(-5/8) * exp((2/3)*(7/15)^(1/4)*Pi * n^(3/4) + 9*sqrt(15/7)*zeta(3) * sqrt(n) / (2*Pi^2) + ((5/7)^(1/4)*Pi / (2*3^(3/4)) - 1215*(15/7)^(1/4)*zeta(3)^2 / (28*Pi^5)) * n^(1/4) + 54675*zeta(3)^3 / (98*Pi^8) - 45*zeta(3) / (28*Pi^2)). - Vaclav Kotesovec, May 12 2021
MATHEMATICA
nmax = 32; CoefficientList[Series[Product[(1 + x^k)^Binomial[k + 2, 2], {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[(-1)^(k/d + 1) d Binomial[d + 2, 2], {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 32}]
CROSSREFS
Sequence in context: A258064 A161590 A192245 * A242558 A018361 A351797
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 09 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 August 26 16:29 EDT 2024. Contains 375459 sequences. (Running on oeis4.)