The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A017298 a(n) = (10*n + 2)^6. 1
64, 2985984, 113379904, 1073741824, 5489031744, 19770609664, 56800235584, 139314069504, 304006671424, 606355001344, 1126162419264, 1973822685184, 3297303959104, 5289852801024, 8198418170944 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7); a(0)=64, a(1)=2985984, a(2)=113379904, a(3)=1073741824, a(4)=5489031744, a(5)=19770609664, a(6)=56800235584. - Harvey P. Dale, Aug 12 2012
MATHEMATICA
(10*Range[0, 20]+2)^6 (* or *) LinearRecurrence[{7, -21, 35, -35, 21, -7, 1}, {64, 2985984, 113379904, 1073741824, 5489031744, 19770609664, 56800235584}, 20] (* Harvey P. Dale, Aug 12 2012 *)
PROG
(Magma) [(10*n+2)^6: n in [0..25]]; // Vincenzo Librandi, Jul 30 2011
(Python) for n in range(0, 25): print((10*n + 2)**6, end=", ") # Stefano Spezia, Oct 20 2018
CROSSREFS
Cf. A001014 (n^6), A017293 (10n+2).
Sequence in context: A017190 A329236 A013847 * A204044 A017418 A017550
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 29 03:48 EDT 2024. Contains 372921 sequences. (Running on oeis4.)