OFFSET
0,1
COMMENTS
Numbers ending in 3 or 8. - Lekraj Beedassy, Jul 08 2006
Number of moves in game of Brussels Sprouts with n+1 crosses. - Charles R Greathouse IV, Mar 09 2014
REFERENCES
Elwyn R. Berlekamp, John Conway, and Richard K. Guy, Winning Ways for your Mathematical Plays, A K Peters, 2001.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
Teena Gerhardt and Brady Haran, Brussels Sprouts, Numberphile video (2014).
Lancelot Hogben, Choice and Chance by Cardpack and Chessboard, Vol. 1, Max Parrish and Co, London, 1950, p. 36.
Tanya Khovanova, Recursive Sequences.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = floor((15*n+10)/3). - Gary Detlefs, Mar 07 2010
G.f.: (3+2*x)/(1-x)^2. - Colin Barker, Jan 08 2012
E.g.f.: (3 + 5*x)*exp(x). - G. C. Greubel, Jul 05 2019
a(n) = 2*a(n-1)-a(n-2). - Wesley Ivan Hurt, Apr 22 2021
Sum_{n>=0} (-1)^n/a(n) = sqrt(2-2/sqrt(5))*Pi/10 - log(phi)/sqrt(5) + log(2)/5, where phi is the golden ratio (A001622). - Amiram Eldar, Apr 15 2023
a(n)^2 + (a(n)+1)^2 - n^2 = A017041(n)^2. - Charlie Marion, Apr 30 2023
MATHEMATICA
Range[3, 300, 5] (* Vladimir Joseph Stephan Orlovsky, May 26 2011 *)
PROG
(PARI) a(n)=5*n+3 \\ Charles R Greathouse IV, Mar 09 2014
(Magma) [5*n+3: n in [0..60]]; // G. C. Greubel, Jul 05 2019
(GAP) List([0..60], n-> 5*n+3) # G. C. Greubel, Jul 05 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Jul 06 2000
STATUS
approved