OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
G.f.: (1 + 6*x + 15*x^2 + 2*x^3)/(1-x)^4. - Colin Barker, Jan 10 2012
From Elmo R. Oliveira, Apr 20 2025: (Start)
E.g.f.: exp(x)*(1 + 9*x + 15*x^2 + 4*x^3).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). (End)
EXAMPLE
For n>4 this is 4321 translated from base n to base 10.
MATHEMATICA
f[n_]:=1+2*n+3*n^2+4*n^3; lst={}; Do[AppendTo[lst, f[n]], {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 12 2010 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Jun 29 2000
EXTENSIONS
More terms from Elmo R. Oliveira, Apr 20 2025
STATUS
approved
