OFFSET
1,1
COMMENTS
a(n) is the number of n-digit integers that contain only even digits (A014263). - Bernard Schott, Nov 11 2022
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (5).
FORMULA
O.g.f.: 5*x*(1-x)/(1-5*x). - Better definition from R. J. Mathar, May 13 2008
Sum_{n>=1} 1/a(n) = 21/80. - Bernard Schott, Nov 11 2022
MATHEMATICA
Join[{5}, NestList[5#&, 20, 20]] (* Harvey P. Dale, Jun 19 2013 *)
Rest[CoefficientList[Series[5 x (1 - x)/(1 - 5 x), {x, 0, 50}], x]] (* G. C. Greubel, Sep 01 2017 *)
PROG
(PARI) my(x='x+O('x^50)); Vec(5*x*(1-x)/(1-5*x)) \\ G. C. Greubel, Sep 01 2017
CROSSREFS
KEYWORD
easy,less,nonn
AUTHOR
Jonathan Vos Post, Jul 29 2005
EXTENSIONS
Better definition from R. J. Mathar, May 13 2008
Incorrect comment removed by Michel Marcus, Nov 11 2022
STATUS
approved