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!)
A227365 a(n) = 0 + 1*2 + 3*4*5 + 6*7*8*9 + ... + ...*n. 5
0, 1, 2, 5, 14, 62, 68, 104, 398, 3086, 3096, 3196, 4406, 20246, 243326, 243341, 243566, 247406, 316766, 1638686, 28150526, 28150547, 28150988, 28161152, 28405550, 34526126, 193916126, 4503821726, 4503821754, 4503822538, 4503846086, 4504576886, 4527986846, 5301270686 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
a(4) = 0 + 1*2 + 3*4 = 14.
a(5) = 0 + 1*2 + 3*4*5 = 62.
a(6) = 0 + 1*2 + 3*4*5 + 6 = 68.
PROG
(Python)
for n in range(55):
sum = i = 0
k = 1
while i<=n:
product = 1
for x in range(k):
product *= i
i += 1
if i>n: break
sum += product
k += 1
print(str(sum), end=', ')
CROSSREFS
Sequence in context: A008286 A049082 A158095 * A059958 A102019 A216270
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Jul 07 2013
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 16 19:48 EDT 2024. Contains 371754 sequences. (Running on oeis4.)