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!)
A283579 Expansion of exp( Sum_{n>=1} A283533(n)/n*x^n ) in powers of x. 5
1, 1, 17, 746, 66418, 9843707, 2187941520, 680615139257, 282199700198462, 150389915598653924, 100155578743010743914, 81505577512720707466924, 79580089689432499741178617, 91814299713761739807846854872 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^k)^(k^(2*k)).
a(n) = (1/n)*Sum_{k=1..n} A283533(k)*a(n-k) for n > 0.
a(n) ~ n^(2*n) * (1 + exp(-2)/n^2). - Vaclav Kotesovec, Mar 17 2017
MATHEMATICA
A[n_] := Sum[d^(2*d + 1), {d, Divisors[n]}]; a[n_] := If[n==0, 1, (1/n)*Sum[A[k]*a[n - k], {k, n}]]; Table[a[n], {n, 0, 13}] (* Indranil Ghosh, Mar 11 2017 *)
PROG
(PARI) A(n) = sumdiv(n, d, d^(2*d + 1));
a(n) = if(n==0, 1, (1/n)*sum(k=1, n, A(k)*a(n - k)));
for(n=0, 11, print1(a(n), ", ")) \\ Indranil Ghosh, Mar 11 2017
CROSSREFS
Cf. Product_{k>=1} 1/(1 - x^k)^(k^(m*k)): A000041 (m=0), A023880 (m=1), this sequence (m=2), A283580 (m=3).
Cf. A283534 (Product_{k>=1} (1 - x^k)^(k^(2*k))).
Sequence in context: A308570 A218423 A171766 * A294757 A176233 A360647
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 11 2017
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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)