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!)
A344097 Expansion of Product_{k>=1} (1 + x^k)^binomial(k+4,4). 3
1, 5, 25, 120, 505, 2027, 7740, 28345, 100355, 344815, 1154130, 3773955, 12085125, 37971645, 117258755, 356386016, 1067364240, 3153415695, 9198749905, 26516197720, 75586609016, 213212467695, 595482274750, 1647568369230, 4517987288720, 12284672226583, 33133931688645 (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) * A174002(d) ) * a(n-k).
MATHEMATICA
nmax = 26; CoefficientList[Series[Product[(1 + x^k)^Binomial[k + 4, 4], {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 + 4, 4], {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 26}]
CROSSREFS
Sequence in context: A238808 A034274 A110212 * A268940 A269636 A269533
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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)