OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (11, -55, 165, -330, 462, -462, 330, -165, 55, -11, 1).
MAPLE
seq((7*n+2)^10, n=0..15); # Muniru A Asiru, Oct 13 2018
MATHEMATICA
(7Range[0, 20]+2)^10 (* Harvey P. Dale, Mar 30 2011 *)
PROG
(Magma) [(7*n+2)^10: n in [0..20]]; // Vincenzo Librandi, Jul 13 2011
(PARI) a(n) = (7*n+2)^10; \\ Altug Alkan, Oct 13 2018
(GAP) List([0..15], n->(7*n+2)^10); # Muniru A Asiru, Oct 13 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved