OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
From G. C. Greubel, Oct 12 2019: (Start)
G.f.: (1 + 30*x + 9*x^2)/(1-x)^3.
E.g.f.: (1 + 32*x + 20*x^2)*exp(x). (End)
MAPLE
seq((2*n+1)*(10*n+1), n=0..50); # G. C. Greubel, Oct 12 2019
MATHEMATICA
Table[(2*n+1)*(10*n+1), {n, 0, 50}] (* G. C. Greubel, Oct 12 2019 *)
PROG
(PARI) a(n)=(2*n+1)*(10*n+1) \\ Charles R Greathouse IV, Jun 17 2017
(Magma) [(2*n+1)*(10*n+1): n in [0..50]] # G. C. Greubel, Oct 12 2019
(Sage) [(2*n+1)*(10*n+1) for n in range(50)] # G. C. Greubel, Oct 12 2019
(GAP) List([0..50], n-> (2*n+1)*(10*n+1)); # G. C. Greubel, Oct 12 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Terms a(33) onward added by G. C. Greubel, Oct 12 2019
STATUS
approved