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!)
A327563 Row sums of A119687. 2
1, 2, 4, 12, 104, 7708, 42181224, 1259630774324312, 1123743023025850233599250718672, 893151516212832508883674101518508312952543518197504822363196 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} T(n, k) where T(n, k) = T(n-1, k-1)^2 + T(n-1, k)^2; T(0,0)=1; T(n,-1):=0; T(n, k):=0, n < k.
EXAMPLE
1 = 1;
1 + 1 = 2;
1 + 2 + 1 = 4;
1 + 5 + 5 + 1 = 12.
PROG
(Python)
def r(i):
t = [[0, 1, 0], [0, 1, 1, 0]]
for n in range(2, i+1):
t.append([0])
for k in range(1, n+2):
t[n].append(t[n-1][k-1]**2 + t[n-1][k]**2)
t[n].append(0)
return(sum(t[i]))
for n in range(1, 10):
print (r(n))
CROSSREFS
Cf. A119687.
Sequence in context: A230814 A325502 A038791 * A326950 A001696 A276534
KEYWORD
nonn
AUTHOR
Cortney Reagle, Sep 17 2019
EXTENSIONS
a(10) corrected by Georg Fischer, Mar 19 2024
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 24 16:34 EDT 2024. Contains 371961 sequences. (Running on oeis4.)