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!)
A174378 Triangle T(n, k) = n!*q^k/(n-k)! if floor(n/2) > k-1 otherwise n!*q^(n-k)/k!, with q = 4, read by rows. 4
1, 1, 1, 1, 8, 1, 1, 12, 12, 1, 1, 16, 192, 16, 1, 1, 20, 320, 320, 20, 1, 1, 24, 480, 7680, 480, 24, 1, 1, 28, 672, 13440, 13440, 672, 28, 1, 1, 32, 896, 21504, 430080, 21504, 896, 32, 1, 1, 36, 1152, 32256, 774144, 774144, 32256, 1152, 36, 1, 1, 40, 1440, 46080, 1290240, 30965760, 1290240, 46080, 1440, 40, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are: {1, 2, 10, 26, 226, 682, 8690, 28282, 474946, 1615178, ...}.
LINKS
FORMULA
T(n, k) = n!*q^k/(n-k)! if floor(n/2) > k-1 otherwise n!*q^(n-k)/k!, with q = 2.
T(n, n-k) = T(n, k).
T(2*n, n) = A052734(n+1). - G. C. Greubel, Nov 28 2021
EXAMPLE
Triangle begins as:
1;
1, 1;
1, 8, 1;
1, 12, 12, 1;
1, 16, 192, 16, 1;
1, 20, 320, 320, 20, 1;
1, 24, 480, 7680, 480, 24, 1;
1, 28, 672, 13440, 13440, 672, 28, 1;
1, 32, 896, 21504, 430080, 21504, 896, 32, 1;
1, 36, 1152, 32256, 774144, 774144, 32256, 1152, 36, 1;
1, 40, 1440, 46080, 1290240, 30965760, 1290240, 46080, 1440, 40, 1;
MATHEMATICA
T[n_, k_, q_]:= If[Floor[n/2]>=k, n!*q^k/(n-k)!, n!*q^(n-k)/k!];
Table[T[n, k, 4], {n, 0, 12}, {k, 0, n}]//Flatten
PROG
(Sage)
f=factorial
def T(n, k, q): return f(n)*q^k/f(n-k) if ((n//2)>k-1) else f(n)*q^(n-k)/f(k)
flatten([[T(n, k, 4) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Nov 28 2021
CROSSREFS
Cf. A159623 (q=1), A174376 (q=2), A174377 (q=3), this sequence (q=4).
Cf. A052734.
Sequence in context: A173742 A146881 A174301 * A131067 A157170 A143679
KEYWORD
nonn,tabl,easy
AUTHOR
Roger L. Bagula, Mar 17 2010
EXTENSIONS
Edited by G. C. Greubel, Nov 28 2021
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 28 17:42 EDT 2024. Contains 371254 sequences. (Running on oeis4.)