OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..800
Index entries for linear recurrences with constant coefficients, signature (15).
FORMULA
a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*16^k. - Philippe Deléham, Dec 04 2009
a(0) = 1; for n>0, a(n) = 16*15^(n-1). - Vincenzo Librandi, Dec 05 2009
a(0)=1, a(1)=16, a(n) = 15*a(n-1). - Vincenzo Librandi, Dec 10 2012
E.g.f.: (16*exp(15*x) - 1)/15. - G. C. Greubel, Sep 23 2019
MAPLE
seq(`if`(n=0, 1, 16*15^(n-1)), n=0..20); # G. C. Greubel, Sep 23 2019
MATHEMATICA
Join[{1}, 16*15^Range[0, 25]] (* Vladimir Joseph Stephan Orlovsky, Jul 13 2011 *)
CoefficientList[Series[(1+x)/(1-15x), {x, 0, 30}], x] ( * Vincenzo Librandi, Dec 10 2012 *)
Join[{1}, NestList[15#&, 16, 20]] (* Harvey P. Dale, Sep 25 2015 *)
PROG
(Magma) [1] cat[16*15^(n-1): n in [1..20]]; // Vincenzo Librandi, Dec 10 2012
(PARI) vector(20, n, if(n==1, 1, 16*15^(n-2))) \\ G. C. Greubel, Sep 23 2019
(Sage) [1]+[16*15^(n-1) for n in (1..20)] # G. C. Greubel, Sep 23 2019
(GAP) Concatenation([1], List([1..20], n-> 16*15^(n-1) )); # G. C. Greubel, Sep 23 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 04 2009
STATUS
approved