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!)
A109285 Column 2 of triangle A109282. 4
1, 3, 9, 63, 492, 4545, 46935, 530562, 6485211, 84764205, 1176089460, 17217555903, 264670166322, 4255132537038, 71307312415452, 1242006842599569, 22428783284638182, 419022897322142115, 8083317501072692514 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Triangular matrix T=A109282 satisfies: T(n,k) = [T^3](n-1,k) for n>k+1>=1, with T(n,n) = 1 and T(n+1,n) = n+1 for n>=0; also, T^(m+3) = SHIFT_UP(T^(m+1) - T^m) - D*T^m for all m where diagonal matrix D = [0,1,2,3,...] and SHIFT_UP shifts each column up 1 row.
LINKS
PROG
(PARI) {a(n)=local(M=matrix(n+3, n+3)); M=M^0; for(i=1, n, M=matrix(n+3, n+3, r, c, if(r>=c, if(r==c, 1, if(r==c+1, c, (M^3)[r-1, c]))))); return(M[n+3, 3])}
CROSSREFS
Cf. A109155, A109282 (triangle), A109283 (column 0), A109284 (column 1), A109286 (row sums).
Sequence in context: A085435 A121696 A108557 * A245165 A091760 A144525
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 24 2005
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 May 11 05:15 EDT 2024. Contains 372388 sequences. (Running on oeis4.)