OFFSET
0,6
COMMENTS
Shifts 3 places left under binomial transform. - Olivier Gérard, Aug 12 2016
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
S. Tauber, On generalizations of the exponential function, Amer. Math. Monthly, 67 (1960), 763-767.
FORMULA
G.f. A(x) satisfies: A(x) = x*(1 + x^2*A(x/(1 - x))/(1 - x)). - Ilya Gutkovskiy, May 02 2019
MAPLE
a := proc(n) option remember; local k; if n<=2 then [0, 1, 0][n+1] else add (binomial(n-3, k)*a(k), k=1..n-3) fi end: seq(a(n), n=0..29); # Sean A. Irvine, Mar 27 2015
MATHEMATICA
m = 30; A[_] = 0;
Do[A[x_] = x (1 + x^2 A[x/(1 - x)]/(1 - x)) + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 23 2019 *)
CROSSREFS
KEYWORD
nonn,eigen
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Mar 27 2015
STATUS
approved