The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A173120 Triangle T(n, k, q) = q*[n=2] + Sum_{j=0..5} q^j*binomial(n-2*j, k-j)*[n>2*j] with T(n,0) = T(n,n) = 1 for q = -4, read by rows. 6
1, 1, 1, 1, -2, 1, 1, -1, -1, 1, 1, 0, -2, 0, 1, 1, 1, 14, 14, 1, 1, 1, 2, 15, 28, 15, 2, 1, 1, 3, 17, -21, -21, 17, 3, 1, 1, 4, 20, -4, -42, -4, 20, 4, 1, 1, 5, 24, 16, 210, 210, 16, 24, 5, 1, 1, 6, 29, 40, 226, 420, 226, 40, 29, 6, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
T(n, k, q) = q*[n=2] + Sum_{j=0..5} q^j*binomial(n-2*j, k-j)*[n>2*j] with T(n,0) = T(n,n) = 1 for q = -4.
Sum_{k=0..n} T(n, k, q) = [n=0] + q*[n=2] + Sum_{j=0..5} q^j*2^(n-2*j)*[n > 2*j] for q = -4. - G. C. Greubel, Apr 27 2021
EXAMPLE
Triangle begins as:
1;
1, 1;
1, -2, 1;
1, -1, -1, 1;
1, 0, -2, 0, 1;
1, 1, 14, 14, 1, 1;
1, 2, 15, 28, 15, 2, 1;
1, 3, 17, -21, -21, 17, 3, 1;
1, 4, 20, -4, -42, -4, 20, 4, 1;
1, 5, 24, 16, 210, 210, 16, 24, 5, 1;
1, 6, 29, 40, 226, 420, 226, 40, 29, 6, 1;
MATHEMATICA
T[n_, k_, q_]:= If[k==0 || k==n, 1, q*Boole[n==2] + Sum[q^j*Binomial[n-2*j, k-j]*Boole[n>2*j], {j, 0, 5}]];
Table[T[n, k, -4], {n, 0, 12}, {k, 0, n}]//Flatten (* modified by G. C. Greubel, Apr 27 2021 *)
PROG
(Sage)
@CachedFunction
def T(n, k, q): return 1 if (k==0 or k==n) else q*bool(n==2) + sum( q^j*binomial(n-2*j, k-j)*bool(n>2*j) for j in (0..5) )
flatten([[T(n, k, -4) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Apr 27 2021
CROSSREFS
Cf. A007318 (q=0), A072405 (q= -1), A173117 (q=1), A173118 (q=2), A173119 (q=3), this sequence (q= -4), A173122.
Sequence in context: A114117 A144435 A182533 * A025920 A037821 A316863
KEYWORD
sign,tabl,easy,less
AUTHOR
Roger L. Bagula, Feb 10 2010
EXTENSIONS
Edited by G. C. Greubel, Apr 27 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 June 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)