OFFSET
0,1
COMMENTS
The subsequence of primes begins: 79, 5119, 1784059615882449851322857461811868920478433279, no more through a(50). - Jonathan Vos Post, Oct 31 2011
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (9,-8).
FORMULA
a(n) = 8*a(n-1) + 7.
a(n) = 9*a(n-1) - 8*a(n-2), n>1.
G.f.: (9-2*x)/((8*x-1)*(x-1)). - R. J. Mathar, Oct 31 2011
E.g.f.: exp(x)*(10*exp(7*x) - 1). - Elmo R. Oliveira, Aug 10 2024
PROG
(Magma) [10*8^n-1: n in [0..30]];
(PARI) Vec((9-2*x)/((8*x-1)*(x-1)) + O(x^30)) \\ Michel Marcus, Feb 26 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Oct 31 2011
STATUS
approved
