OFFSET
0,1
REFERENCES
Mervine Edwards and Siegfried Haenisch, New Views in Algebra, 1: An Integrated Approach, Educational Design, Inc, 1999 (ISBN #0-87694-578-7); p. 9, #16.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..100
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (39).
FORMULA
From Philippe Deléham, Nov 24 2008: (Start)
a(n) = 39*a(n-1), n > 0; a(0)=17.
G.f.: 17/(1-39*x).
a(n) = 17*A009983(n). (End)
MAPLE
for n from 0 to 30 do printf(`%d, `, 17*39^n) od;
PROG
(PARI) { for (n=0, 100, if (n, a*=39, a=17); write("b063941.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 03 2009
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Deborah Florez (deborahf(AT)bcn.net), Sep 01 2001
EXTENSIONS
Better description from Brian Galebach, Sep 05 2001
More terms from James A. Sellers, Sep 25 2001
STATUS
approved