OFFSET
1,1
COMMENTS
Multiples of 8 with unit digit equal to 8.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..2000
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = a(n-1) + 40.
From G. C. Greubel, Jul 18 2017: (Start)
G.f.: (72*x - 32)/(1-x)^2.
E.g.f.: (40*x - 32)*exp(x). (End)
MATHEMATICA
NestList[#+40&, 8, 50] (* Harvey P. Dale, Oct 02 2013 *)
PROG
(Magma) [40*n-32: n in [1..50]]; // Vincenzo Librandi, Jun 19 2011
(PARI) a(n)=40*n-32 \\ Charles R Greathouse IV, Aug 25 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Odimar Fabeny, Jun 06 2008
EXTENSIONS
More terms from Reinhard Zumkeller, Jun 22 2008
New definition from Paolo P. Lava, Sep 06 2010
STATUS
approved