OFFSET
0,2
COMMENTS
Smallest prime of this form is a(101). - Bruno Berselli, Jun 17 2013
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..300
Index entries for linear recurrences with constant coefficients, signature (10,-17,8).
FORMULA
G.f.: (-1+x+7*x^2)/((8*x-1)*(x-1)^2).
a(n) = 10*a(n-1)-17*a(n-2)+8*a(n-3).
MATHEMATICA
Table[8^n + n, {n, 0, 30}] (* or *) CoefficientList[Series[(-1 + x + 7 x^2) / ((8 x - 1) (x - 1)^2), {x, 0, 30}], x]
LinearRecurrence[{10, -17, 8}, {1, 9, 66}, 30] (* Harvey P. Dale, Aug 11 2015 *)
PROG
(Magma) [8^n+n: n in [0..30]]; /* or */ I:=[1, 9, 66]; [n le 3 select I[n] else 10*Self(n-1)-17*Self(n-2)+8*Self(n-3): n in [1..30]];
(PARI) a(n)=8^n+n \\ Charles R Greathouse IV, Oct 07 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jun 16 2013
STATUS
approved