login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A017014
a(n) = (7*n + 2)^10.
1
1024, 3486784401, 1099511627776, 41426511213649, 590490000000000, 4808584372417849, 27197360938418176, 119042423827613001, 430804206899405824, 1346274334462890625, 3743906242624487424
OFFSET
0,1
LINKS
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
Sequence in context: A016882 A227664 A016942 * A017098 A017194 A160867
KEYWORD
nonn,easy
STATUS
approved