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!)
A326986 G.f.: B(x)*B(x^2)*B(x^3)*..., where B(x) is g.f. of A000312. 3
1, 1, 5, 29, 266, 3163, 46994, 827107, 16828741, 388308078, 10017853262, 285720195351, 8926575094978, 303172417424680, 11121259586618456, 438207141286916539, 18458204444260001120, 827690809585441201775, 39365349178064541861252, 1979267564496263599093676 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n^n.
MAPLE
B:= proc(n) option remember; n^n end:
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i=1,
B(n), add(b(j, 1)*b(n-i*j, i-1), j=0..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..20); # Alois P. Heinz, Aug 23 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[Product[1+Sum[k^k*x^(j*k), {k, 1, nmax/j}], {j, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A342449 A345098 A144015 * A228387 A181356 A177440
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 10 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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)