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!)
A113099 Triangle T, read by rows, equal to the matrix cube of triangle A113095, which satisfies the recurrence: A113095(n,k) = [A113095^4](n-1,k-1) + [A113095^4](n-1,k). 3
1, 3, 1, 27, 15, 1, 693, 513, 63, 1, 52812, 47619, 8289, 255, 1, 12628008, 13176189, 2920527, 131841, 1023, 1, 9924266772, 11586274263, 3078907929, 181929087, 2101761, 4095, 1, 26507035453923, 33825995695125, 10365262415703 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
Triangle begins:
1;
3,1;
27,15,1;
693,513,63,1;
52812,47619,8289,255,1;
12628008,13176189,2920527,131841,1023,1;
9924266772,11586274263,3078907929,181929087,2101761,4095,1; ...
PROG
(PARI) {T(n, k)=local(M=matrix(n+1, n+1)); for(r=1, n+1, for(c=1, r, M[r, c]=if(r==c, 1, if(c>1, (M^4)[r-1, c-1])+(M^4)[r-1, c]))); return((M^3)[n+1, k+1])}
CROSSREFS
Sequence in context: A033464 A170924 A173007 * A317930 A270078 A269875
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Oct 14 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 April 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)