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!)
A321389 Expansion of Product_{k>=1} ((1 + x^k)/(1 - x^k))^(k^k). 0
1, 2, 10, 72, 670, 7896, 113532, 1938948, 38463150, 869969602, 22098936536, 622728174288, 19271479902324, 649553475002720, 23680210649058960, 928276725059295192, 38931910620358040382, 1739307894106738293052, 82457731356894087128054, 4134332188240252347401752, 218571692793801915329820184 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Convolution of A023880 and A261053.
LINKS
N. J. A. Sloane, Transforms
FORMULA
G.f.: exp(Sum_{k>=1} ( Sum_{d|k} ((-1)^(k/d+1) + 1)*d^(d+1) ) * x^k/k).
a(n) ~ 2 * n^n * (1 + 2*exp(-1)/n + (exp(-1) + 10*exp(-2))/n^2). - Vaclav Kotesovec, Nov 09 2018
MAPLE
a:=series(mul(((1+x^k)/(1-x^k))^(k^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 + x^k)/(1 - x^k))^(k^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[((-1)^(k/d + 1) + 1) d^(d + 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 20}]
PROG
(PARI) seq(n)={Vec(exp(sum(k=1, n, sumdiv(k, d, ((-1)^(k/d+1) + 1)*d^(d+1) ) * x^k/k) + O(x*x^n)))} \\ Andrew Howroyd, Nov 09 2018
CROSSREFS
Sequence in context: A177384 A354288 A182525 * A292406 A185183 A052555
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 08 2018
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 28 12:15 EDT 2024. Contains 372085 sequences. (Running on oeis4.)