|
| |
|
|
A174954
|
|
a(1)=1 and a(2)=2, a(n) = square of the sum of previous terms.
|
|
0
|
| |
|
|
|
OFFSET
|
1,2
|
|
|
COMMENTS
|
SQRT(a(n+1)/a(n)) = A082732(n).
|
|
|
LINKS
|
Table of n, a(n) for n=1..8.
|
|
|
FORMULA
|
a(n+1)=[Sum_{i=1..n}{a(i)}]^2, for n>=2 and with a(1)=1, a(2)=2 [From Paolo P. Lava, Apr 23 2010]
|
|
|
MAPLE
|
P:=proc(i) local a, s, n; print(1); print(2); s:=3; for n from 0 by 1 to i do a:=s^2; print(a); s:=s+a; od; end: P(100); [From Paolo P. Lava, Apr 23 2010]
|
|
|
CROSSREFS
|
Cf. A174864
Sequence in context: A189428 A110860 A050995 * A193440 A117116 A211935
Adjacent sequences: A174951 A174952 A174953 * A174955 A174956 A174957
|
|
|
KEYWORD
|
easy,nonn
|
|
|
AUTHOR
|
Giovanni Teofilatto, Apr 02 2010
|
|
|
STATUS
|
approved
|
| |
|
|