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!)
A308228 G.f.: x * Product_{k>=1} 1/(1 - k^k*x^k)^(a(k)/k). 1
1, 1, 3, 30, 1956, 1224510, 9523018859, 1120383171258352, 2349614928773045360884, 101143220645945325750097689653, 101143220747088551095300901321325558554, 2623394662131051405254078144558922468191548124266 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
Recurrence: a(n+1) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} d^k*a(d) ) * a(n-k+1).
MATHEMATICA
a[n_] := a[n] = SeriesCoefficient[x Product[1/(1 - k^k x^k)^(a[k]/k), {k, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 1, 12}]
a[n_] := a[n] = Sum[Sum[d^k a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 1}]/(n - 1); a[1] = 1; Table[a[n], {n, 1, 12}]
CROSSREFS
Sequence in context: A203520 A238767 A323819 * A208789 A296173 A248728
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 16 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 25 10:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)