OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..700
G. R. Franssens, On a number pyramid related to the binomial, Deleham, Eulerian, MacMahon and Stirling number triangles, Journal of Integer Sequences, Vol. 9 (2006), Article 06.4.1.
L. Reyzin, Mathoverflow, Number of closed walks on an n-cube
Index entries for linear recurrences with constant coefficients, signature (35,-259,225).
FORMULA
a(n) = (25^n + 5*9^n + 10)/16.
G.f.: (1 - 30*x + 149*x^2)/(1 - 35*x + 259*x^2 - 225*x^3).
From Peter Bala, Nov 13 2006: (Start)
E.g.f.: cosh^5(x).
O.g.f.: 1/(1-5*1x/(1-4*2x/(1-3*3x/(1-2*4x/(1-1*5x))))) (continued fraction). (End)
(-1)^n*a(n) = Sum_{k=0..n} A086872(n,k)*(-6)^(n-k). - Philippe Deléham, Aug 17 2007
a(n) = (1/2^5)*Sum_{j = 0..5} binomial(5,j)*(5 - 2*j)^(2*n). See Reyzin link. - Peter Bala, Jun 03 2019
MATHEMATICA
Table[(25^n +5*9^n +10)/16, {n, 0, 20}] (* G. C. Greubel, Jun 07 2019 *)
PROG
(PARI) a(n)=(25^n+5*9^n+10)>>4 \\ Charles R Greathouse IV, Jan 17 2012
(Magma) [(25^n +5*9^n +10)/16: n in [0..20]]; // G. C. Greubel, Jun 07 2019
(Sage) [(25^n +5*9^n +10)/16 for n in (0..20)] # G. C. Greubel, Jun 07 2019
(GAP) List([0..20], n-> (25^n +5*9^n +10)/16) # G. C. Greubel, Jun 07 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Philippe Deléham, Aug 27 2006
EXTENSIONS
Corrected by T. D. Noe, Nov 07 2006
STATUS
approved