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!)
A323634 Expansion of Product_{k>=1} 1/(1 - k^(k-1)*x^k). 2
1, 1, 3, 12, 80, 723, 8716, 128227, 2251086, 45647542, 1051845574, 27107414480, 772785074811, 24136982014698, 819697939365724, 30068912837398063, 1184872370227462528, 49914074776385885492, 2238476211786621770206, 106476394492364281869654, 5354276181476337307494676 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This sequence is obtained from the generalized Euler transform in A266964 by taking f(n) = 1, g(n) = n^(n-1). - Seiichi Manyama, Aug 22 2020
LINKS
FORMULA
a(n) ~ n^(n-1) * (1 + exp(-1)/n + (3*exp(-2) + 3*exp(-1)/2)/n^2). - Vaclav Kotesovec, Jan 22 2019
MAPLE
a:=series(mul(1/(1-k^(k-1)*x^k), k=1..100), x=0, 21): seq(coeff(a, x, n), n=0..20); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[Product[1/(1 - k^(k - 1) x^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d^(k - k/d + 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 20}]
PROG
(PARI) N=40; x='x+O('x^N); Vec(1/prod(k=1, N, 1-k^(k-1)*x^k)) \\ Seiichi Manyama, Aug 22 2020
CROSSREFS
Sequence in context: A213139 A023879 A084565 * A275488 A304561 A303227
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 21 2019
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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)