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!)
A343351 Expansion of Product_{k>=1} 1 / (1 - x^k)^(6^(k-1)). 7
1, 1, 7, 43, 280, 1792, 11586, 74550, 479892, 3083640, 19794678, 126908502, 812761299, 5199586119, 33230586285, 212172173565, 1353444677529, 8626044781761, 54931168743703, 349524243121795, 2222294161109422, 14119034725444774, 89639674321304392, 568720801952770012 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ exp(sqrt(2*n/3) - 1/12 + c/6) * 6^(n - 1/4) / (2*sqrt(Pi)*n^(3/4)), where c = Sum_{j>=2} 1/(j * (6^(j-1) - 1)). - Vaclav Kotesovec, Apr 12 2021
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)*add(
d*6^(d-1), d=numtheory[divisors](j)), j=1..n)/n)
end:
seq(a(n), n=0..23); # Alois P. Heinz, Apr 12 2021
MATHEMATICA
nmax = 23; CoefficientList[Series[Product[1/(1 - x^k)^(6^(k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[d 6^(d - 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A194779 A126502 A286911 * A277188 A356559 A351757
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 12 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 May 9 14:31 EDT 2024. Contains 372351 sequences. (Running on oeis4.)