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!)
A298906 Expansion of e.g.f. Product_{k>=1} (1 + x^k)^(1/k!). 7
1, 1, 1, 4, 2, 1, 77, 29, -4289, -14836, 283812, 1316855, -16548717, -292820579, 911200565, 52594983250, 100157634380, -3444629077653, 7961210574683, -2170805244559295, -41176659971108705, 348776485253486302, 35663019455311634058, 513993485453689440281 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: exp(Sum_{k>=1} (-1)^(k+1)*(exp(x^k) - 1)/k).
E.g.f.: Product_{k>=1} B(x^k)^((-1)^(k+1)/k), where B(x) = exp(exp(x) - 1) = e.g.f. of Bell numbers (A000110).
EXAMPLE
E.g.f.: A(x) = 1 + x + x^2/2! + 4*x^3/3! + 2*x^4/4! + x^5/5! + 77*x^6/6! + ... = (1 + x) * (1 + x^2)^(1/2!) * (1 + x^3)^(1/3!) * (1 + x^4)^(1/4!) * ...
MAPLE
a:=series(exp(add((-1)^(k+1)*(exp(x^k)-1)/k, k=1..100)), x=0, 24): seq(n!*coeff(a, x, n), n=0..23); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Exp[Sum[(-1)^(k + 1) (Exp[x^k] - 1)/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1)/(d - 1)!, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[n! a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A136215 A136737 A275595 * A004551 A284398 A285001
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 18 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 23 06:58 EDT 2024. Contains 371906 sequences. (Running on oeis4.)