login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A075670 Sum of next n 9-th powers. 9
1, 20195, 12292965, 1561991824, 77226633575, 2014634387961, 33098483802475, 383318212734080, 3377498614484589, 23898971839102975, 141290020118952881, 719054471032657200, 3223613105991831475, 12964037775857022869 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

Vincenzo Librandi, Table of n, a(n) for n = 1..10000

FORMULA

a(1)=1; a(n)=sum(i^s, {i, n(n-1)/2+1, n(n-1)/2+1+n}).

a(n) = (5n^19 + 105n^17 + 666n^15 + 1530n^13 + 689n^11 - 995n^9 + 304n^7 + 640n^5 - 384n^3)/2560

EXAMPLE

s=9; a(1) = 1^s = 1; a(2) = 2^s + 3^s = 2^9 + 3^9 = 20195; a(3) = 4^s + 5^s + 6^s = 12292965, a(4) = 7^s + 8^s + 9^s + 10^3 = 1561991824.

MATHEMATICA

i1 := n(n-1)/2+1; i2 := n(n-1)/2+n; s=9; Table[Sum[i^s, {i, i1, i2}], {n, 20}]

Total[#^9]&/@(Range[First[#]+1, Last[#]]&/@Partition[Accumulate[Range[ 0, 15]], 2, 1]) (* From Harvey P. Dale, Oct 05 2011 *)

PROG

(MAGMA) [(5*n^19 + 105*n^17 + 666*n^15 + 1530*n^13 + 689*n^11 - 995*n^9 + 304*n^7 + 640*n^5 - 384*n^3)/2560 : n in [1..20]]; // Vincenzo Librandi, Oct 06 2011

CROSSREFS

Cf. A072474 (s=2), A075664 - A075670 (s=3-10), A075671 (s=n).

Cf. A006003, A072474, A075664 - A075671.

Sequence in context: A114613 A052358 A052189 * A053073 A133527 A146961

Adjacent sequences:  A075667 A075668 A075669 * A075671 A075672 A075673

KEYWORD

nonn,easy

AUTHOR

Zak Seidov (zakseidov(AT)yahoo.com), Sep 24 2002

EXTENSIONS

Formula from Charles R Greathouse IV (charles.greathouse(AT)case.edu), Sep 17 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 13 16:35 EST 2012. Contains 205523 sequences.