OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (38).
FORMULA
a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*39^k. - Philippe Deléham, Dec 04 2009
a(0)=1; for n>0, a(n) = 39*38^(n-1). - Vincenzo Librandi, Dec 05 2009
E.g.f.: (39*exp(38*x) - 1)/38. - G. C. Greubel, Oct 09 2019
MAPLE
k:=39; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # G. C. Greubel, Oct 09 2019
MATHEMATICA
CoefficientList[Series[(1+x)/(1-38x), {x, 0, 20}], x] (* Vincenzo Librandi, Apr 28 2014 *)
With[{k = 39}, Table[If[n==0, 1, k*(k-1)^(n-1)], {n, 0, 25}]] (* G. C. Greubel, Oct 09 2019 *)
PROG
(Magma) [1] cat [39*38^(n-1): n in [1..20]]; // Vincenzo Librandi, Apr 28 2014
(PARI) vector(26, n, k=39; if(n==1, 1, k*(k-1)^(n-2))) \\ G. C. Greubel, Oct 09 2019
(Sage) k=39; [1]+[k*(k-1)^(n-1) for n in (1..25)] # G. C. Greubel, Oct 09 2019
(GAP) k:=39;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # G. C. Greubel, Oct 09 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 04 2009
STATUS
approved