[go: up one dir, main page]

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”).

A017647
(12n+10)^7.
1
10000000, 2494357888, 52523350144, 435817657216, 2207984167552, 8235430000000, 24928547056768, 64847759419264, 150363025899136, 318547390056832, 627485170000000, 1164175380274048, 2054210978157184
OFFSET
0,1
LINKS
MATHEMATICA
(12 Range[0, 20]+10)^7 (* or *) LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {10000000, 2494357888, 52523350144, 435817657216, 2207984167552, 8235430000000, 24928547056768, 64847759419264}, 20] (* Harvey P. Dale, Nov 29 2022 *)
PROG
(PARI) a(n)=(12*n+10)^7 \\ Edward Jiang, Aug 20 2014
(Python)
def a017647(n):
....return (12*n+10)**7
# Edward Jiang, Aug 20 2014
CROSSREFS
Sequence in context: A017179 A017275 A017515 * A182749 A260915 A072144
KEYWORD
nonn,easy
AUTHOR
STATUS
approved