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!)
A133148 E.g.f.: Sum_{k>=1} (x^k/k! / Product_{i=1..k} (1-x^i)). 1
1, 3, 10, 53, 286, 2227, 16682, 164089, 1619506, 19139231, 228289282, 3233324437, 45177961154, 727739459371, 11876754782146, 215081192780657, 3943187021584642, 80187760712122039, 1635670770628012706 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: let B(x)=(1 - G(0))/(1-x) where G(k) = 1 - 1/(1-x^(k+1))/(k+1)/(1-x/(x-1/G(k+1) )); (recursively defined continued fraction); then the e.g.f. equals d/dx B(x). - Sergei N. Gladkovskii, Jan 22 2013
MAPLE
A133148 := proc(n) local egf, k, i, tmp; egf := 0 ; for k from 1 to n do tmp := x^k/k! ; for i from 1 to k do tmp := taylor( tmp/(1-x^i), x=0, n+1) ; od: egf := egf+tmp ; od: coeftayl(egf*n!, x=0, n) ; end: seq(A133148(n), n=1..25) ; # R. J. Mathar, Sep 28 2007
MATHEMATICA
Rest[ Range[0, 15]!* CoefficientList[ Series[ Sum[x^k/k!/Product[(1 - x^i), {i, k}], {k, 15}], {x, 0, 15}], x]] (* Robert G. Wilson v, Oct 07 2007 *)
max = 18; Clear[g]; g[max + 1] = 1; g[k_] := g[k] = 1 - 1/(1 - x^(k + 1))/(k + 1)/(1 - x/(x - 1/g[k + 1])); b[x_] := (1 - g[0])/(1 - x); CoefficientList[ Series[b[x], {x, 0, max}], x]*Range[1, max + 1]! (* Jean-François Alcover, Jan 24 2013, after Sergei N. Gladkovskii *)
CROSSREFS
Sequence in context: A002873 A309910 A042171 * A189815 A143599 A264409
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, Sep 22 2007
EXTENSIONS
More terms from R. J. Mathar, Sep 28 2007
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 May 4 19:41 EDT 2024. Contains 372257 sequences. (Running on oeis4.)