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!)
A113994 Column 2 of triangle A113993, also equals column 0 of A113983^3. 6
1, 3, 9, 27, 89, 327, 1353, 6303, 32953, 192395, 1247473, 8931643, 70221841, 603040399, 5628477521, 56832554399, 618172840753, 7214736795987, 90023735419577, 1196943617218715, 16905957430843689, 252946811300548119 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
A113983^3, the matrix cube of triangle A113983, begins:
1;
3,1;
9,6,1;
27,27,9,1;
89,117,57,12,1;
327,529,333,99,15,1;
1353,2583,1965,735,153,18,1;
6303,13815,12185,5393,1383,219,21,1;
32953,81321,80865,40785,12169,2337,297,24,1; ...
PROG
(PARI) a(n)=local(A, B); A=Mat(1); for(m=2, n+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(i<3 || j==1 || j==i, B[i, j]=1, B[i, j]=A[i-1, j-1]+(A^2)[i-2, j-1] ); )); A=B); (A^3)[n+1, 1]
CROSSREFS
Cf. A113993, A113989 (column 1), A113995 (column 3), A113996 (column 4), A113997 (row sums); A113983.
Sequence in context: A179263 A147242 A148924 * A302860 A217639 A328080
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 12 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 March 29 04:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)