OFFSET
1,2
COMMENTS
Except for first two terms, sqrt(a(n+1)/a(n)) = A144780(n).
LINKS
Indranil Ghosh, Table of n, a(n) for n = 1..12
MATHEMATICA
a={1, 3}; Do[AppendTo[a, Total[a]^2], {9}]; a (* Indranil Ghosh, Feb 20 2017 *)
PROG
(Python)
#Program to generate the b-file
lst=[1, 3]
print("1 1")
print("2 3")
i=3
a=sum(lst)**2
while i<=12:
print(str(i)+" "+str(a))
lst.append(a)
i+=1
a=sum(lst)**2 # Indranil Ghosh, Feb 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Teofilatto, Apr 14 2010
STATUS
approved