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!)
A176631 Triangle T(n, k) = 22^(k*(n-k)), read by rows. 9

%I #7 Sep 08 2022 08:45:53

%S 1,1,1,1,22,1,1,484,484,1,1,10648,234256,10648,1,1,234256,113379904,

%T 113379904,234256,1,1,5153632,54875873536,1207269217792,54875873536,

%U 5153632,1,1,113379904,26559922791424,12855002631049216,12855002631049216,26559922791424,113379904,1

%N Triangle T(n, k) = 22^(k*(n-k)), read by rows.

%H G. C. Greubel, <a href="/A176631/b176631.txt">Rows n = 0..50 of the triangle, flattened</a>

%F T(n, k, q) = c(n, q)/(c(k, q)*c(n-k, q)), where c(n, k) = Product_{j=1..n} (q*(3*q - 1)/2)^j and q = 4.

%F T(n, k, q) = (binomial(3*q, 2)/3)^(k*(n-k)) with q = 4.

%F T(n, k, m) = (m+2)^(k*(n-k)) with m = 20. - _G. C. Greubel_, Jul 01 2021

%e Triangle begins as:

%e 1;

%e 1, 1;

%e 1, 22, 1;

%e 1, 484, 484, 1;

%e 1, 10648, 234256, 10648, 1;

%e 1, 234256, 113379904, 113379904, 234256, 1;

%e 1, 5153632, 54875873536, 1207269217792, 54875873536, 5153632, 1;

%t T[n_, k_, q_]= (Binomial[3*q,2]/3)^(k*(n-k)); Table[T[n,k,4], {n,0,12}, {k,0,n}]//Flatten

%t Table[22^(k*(n-k)), {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, Jul 01 2021 *)

%o (Magma) [22^(k*(n-k)): k in [0..n], n in [0..12]]; // _G. C. Greubel_, Jul 01 2021

%o (Sage) flatten([[22^(k*(n-k)) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, Jul 01 2021

%Y Cf. A000326.

%Y Cf. A118190 (q=2), A176627 (q=3), this sequence (q=4).

%Y Cf. A117401 (m=0), A118180 (m=1), A118185 (m=2), A118190 (m=3), A158116 (m=4), A176642 (m=6), A158117 (m=8), A176627 (m=10), A176639 (m=13), A156581 (m=15), A176643 (m=19), this sequence (m=20), A176641 (m=26), A176644 (m=38).

%K nonn,tabl

%O 0,5

%A _Roger L. Bagula_, Apr 22 2010

%E Edited by _G. C. Greubel_, Jul 01 2021

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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)