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!)
A227367 a(0)=1, a(n+1) = a(0) + a(1)*a(2) + a(3)*a(4)*a(5) + a(6)*a(7)*a(8)*a(9) + ... + ...*a(n). 5
1, 1, 2, 3, 6, 21, 381, 762, 290703, 84397476747, 7122934049104967061783, 14245868098209934123566, 101472378935797762635619628499635817245339961, 10296643686890133479148472187437767614663729545766251948487237380959682684821520304732841 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
a(1) = a(0) = 1
a(2) = a(0) + a(1) = 2
a(3) = a(0) + a(1)*a(2) = 3
a(4) = a(0) + a(1)*a(2) + a(3) = 1 + 2 + 3 = 6
a(5) = a(0) + a(1)*a(2) + a(3)*a(4) = 1 + 2 + 18 = 21
a(6) = a(0) + a(1)*a(2) + a(3)*a(4)*a(5) = 1 + 2 + 18*21 = 381
PROG
(Python)
a = [1]*99
for n in range(20):
sum = i = 0
k = 1
while i<=n:
product = 1
for x in range(k):
product *= a[i]
i += 1
if i>n: break
sum += product
k += 1
a[n+1] = sum
print(str(a[n]), end=', ')
CROSSREFS
Sequence in context: A303224 A007501 A369996 * A270397 A278106 A015773
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Jul 08 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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)