OFFSET
1,2
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..400
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
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, Sep 22 2007
EXTENSIONS
More terms from R. J. Mathar, Sep 28 2007
STATUS
approved