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!)
A117446 Triangle T(n, k) = binomial(L(k/3), n-k) where L(j/p) is the Legendre symbol of j and p, read by rows. 4
1, 0, 1, 0, 1, 1, 0, 0, -1, 1, 0, 0, 1, 0, 1, 0, 0, -1, 0, 1, 1, 0, 0, 1, 0, 0, -1, 1, 0, 0, -1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, -1, 0, 1, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 1, 0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 1, 1, 0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
T(n, k) = binomial(L(k/3), n-k), where L(j/p) is the Legendre symbol of j and p.
Sum_{k=0..n} T(n, k) = A117447(n).
Sum_{k=0..floor(n/2)} T(n-k, k) = A117448(n) (diagonal sums).
EXAMPLE
Triangle begins
1;
0, 1;
0, 1, 1;
0, 0, -1, 1;
0, 0, 1, 0, 1;
0, 0, -1, 0, 1, 1;
0, 0, 1, 0, 0, -1, 1;
0, 0, -1, 0, 0, 1, 0, 1;
0, 0, 1, 0, 0, -1, 0, 1, 1;
0, 0, -1, 0, 0, 1, 0, 0, -1, 1;
0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 1;
0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 1, 1;
0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 1;
0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 1;
0, 0, 1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 1, 1;
MATHEMATICA
Table[Binomial[JacobiSymbol[k, 3], n-k], {n, 0, 12}, {k, 0, n}]//Flatten (* G. C. Greubel, Jun 02 2021 *)
PROG
(Sage) flatten([[binomial(kronecker(k, 3), n-k) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Jun 02 2021
CROSSREFS
Cf. A117447 (row sums), A117448 (diagonal sums), A117449 (inverse).
Sequence in context: A167371 A127241 A087748 * A187034 A101688 A155029
KEYWORD
easy,sign,tabl
AUTHOR
Paul Barry, Mar 16 2006
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 May 13 00:07 EDT 2024. Contains 372497 sequences. (Running on oeis4.)