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!)
A172429 Triangle T(n, k, q) = c(n,q)/( c(k,q)*c(n-k,q) ), where c(n, q) = Product_{j=1..n} f(n, q), f(n, q) = ( (1-q^n)*(1+(-1)^n) + n!*(1-(-1)^n) )/2, and q = 4, read by rows. 3
1, 1, 1, 1, -15, 1, 1, 6, 6, 1, 1, -255, 102, -255, 1, 1, 120, 2040, 2040, 120, 1, 1, -4095, 32760, -1392300, 32760, -4095, 1, 1, 5040, 1375920, 27518400, 27518400, 1375920, 5040, 1, 1, -65535, 22019760, -15028486200, 7072228800, -15028486200, 22019760, -65535, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
T(n, k, q) = c(n,q)/( c(k,q)*c(n-k,q) ), where c(n, q) = Product_{j=1..n} f(n, q), f(n, q) = ( (1-q^n)*(1+(-1)^n) + n!*(1-(-1)^n) )/2, and q = 4.
EXAMPLE
The triangle begins as:
1;
1, 1;
1, -15, 1;
1, 6, 6, 1;
1, -255, 102, -255, 1;
1, 120, 2040, 2040, 120, 1;
1, -4095, 32760, -1392300, 32760, -4095, 1;
1, 5040, 1375920, 27518400, 27518400, 1375920, 5040, 1;
1, -65535, 22019760, -15028486200, 7072228800, -15028486200, 22019760, -65535, 1;
MATHEMATICA
f[n_, q_]:= ((1-q^n)*(1+(-1)^n) + n!*(1-(-1)^n))/2;
c[n_, q_]:= Product[f[j, q], {j, n}];
T[n_, k_, q_]:= c[n, q]/(c[k, q]*c[n-k, q]);
Table[T[n, k, 4], {n, 0, 12}, {k, 0, n}]//Flatten (* modified by G. C. Greubel, May 07 2021 *)
PROG
(Sage)
@CachedFunction
def f(n, q): return ((1-q^n)*(1+(-1)^n) + factorial(n)*(1-(-1)^n))/2
def c(n, q): return product( f(j, q) for j in (1..n) )
def T(n, k, q): return c(n, q)/(c(k, q)*c(n-k, q))
flatten([[T(n, k, 4) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, May 07 2021
CROSSREFS
Cf. A172427 (q=3), A172428 (q=4), this sequence (q=5).
Sequence in context: A281571 A040227 A040226 * A040225 A070644 A174389
KEYWORD
sign,tabl
AUTHOR
Roger L. Bagula, Feb 02 2010
EXTENSIONS
Edited by G. C. Greubel, May 07 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 April 24 19:39 EDT 2024. Contains 371963 sequences. (Running on oeis4.)