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!)
A185826 Sum of the next n natural numbers raised to the n-th power. 1
1, 25, 3375, 1336336, 1160290625, 1870414552161, 5026507568359375, 20882706457600000000, 126834469112674289266929, 1078732544346879404306640625, 12415028528548173886807771291871, 188031682201497672618081000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Write the natural numbers in groups, with group sizes incremented by one, each time: 1; 2,3; 4,5,6; 7,8,9,10; ... and add the numbers in each group, then take the i-th power for the i-th group to get the i-th entry in the sequence.
LINKS
FORMULA
a(n)=((n+n^3)/2)^n - Harvey P. Dale, Apr 24 2022
MATHEMATICA
Module[{nn=15}, #[[1]]^#[[2]]&/@Thread[{Total/@TakeList[Range[(nn(nn+1))/2], Range[ nn]], Range[nn]}]] (* or *) Table[((n+n^3)/2)^n, {n, 20}] (* Harvey P. Dale, Apr 24 2022 *)
PROG
(Python)
num = 100
n = 0
a = range(num+1)
for i in range(1, num):
....sum = 0
....for j in range(1, i+1):
........sum = sum + (n+j)
....n = n + i
....a[i] = sum**i
CROSSREFS
A006003. The n-th entry in this sequence (starting from 1) is equal to the (n+1)-st entry of A006003 to the n-th power
Sequence in context: A178188 A203186 A322249 * A178026 A012748 A337725
KEYWORD
nonn
AUTHOR
Amir H. Farrahi, Feb 05 2011
EXTENSIONS
Edited by N. J. A. Sloane, Feb 05 2011
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 April 18 20:10 EDT 2024. Contains 371781 sequences. (Running on oeis4.)