login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A104448 Row sums of triangle A104446. 1
1, 3, 6, 13, 33, 101, 372, 1624, 8263, 48285, 320031, 2380114, 19675986, 179314868, 1788473424, 19398149629, 227510745445, 2871040422932, 38810001746171, 559745948482030, 8582882169611759, 139467832061599433 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

A104446 equals the square of triangular matrix A104445, read by rows, where X=[A104445] satisfies: SHIFT_LEFT_UP(X) = X^2 - X + I.

FORMULA

a(n) = A091352(n) + A091352(n-1) for n>0.

PROG

(PARI) {a(n)=local(A=Mat(1), B); for(m=1, n+1, B=A^2-A+A^0; A=matrix(m+1, m+1); for(i=1, m+1, for(j=1, i, if(i<2|j==i, A[i, j]=1, if(j==1, A[i, j]=1, A[i, j]=B[i-1, j-1]))))); return(sum(k=1, n+1, (A^2)[n+1, k]))}

CROSSREFS

Cf. A104446, A104445, A091352, A091351.

Sequence in context: A179928 A026538 A201951 * A062466 A053564 A036781

Adjacent sequences:  A104445 A104446 A104447 * A104449 A104450 A104451

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Mar 08 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 05:41 EST 2012. Contains 205570 sequences.