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!)
A113110 Triangle T, read by rows, equal to the matrix cube of triangle A113106, which satisfies the recurrence: A113106(n,k) = [A113106^5](n-1,k-1) + [A113106^5](n-1,k). 4
1, 3, 1, 33, 18, 1, 1251, 903, 93, 1, 173505, 151716, 22278, 468, 1, 94216515, 94758285, 17789766, 551778, 2343, 1, 210576669921, 235461277878, 53137278735, 2167944516, 13749903, 11718, 1, 2002383115518243, 2432344424403219 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
Triangle begins:
1;
3,1;
33,18,1;
1251,903,93,1;
173505,151716,22278,468,1;
94216515,94758285,17789766,551778,2343,1;
210576669921,235461277878,53137278735,2167944516,13749903,11718,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^5)[r-1, c-1])+(M^5)[r-1, c]))); return((M^3)[n+1, k+1])}
CROSSREFS
Cf. A113106.
Sequence in context: A303818 A047815 A095844 * A317363 A190964 A109842
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 24 08:56 EDT 2024. Contains 371934 sequences. (Running on oeis4.)