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!)
A117945 Triangle related to powers of 3 partitions of n. 2
1, 0, 1, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, -1, 0, 1, -1, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row sums are A039966.
Inverse of A117944.
LINKS
EXAMPLE
Triangle begins
1;
0, 1;
-1, 0, 1;
0, 0, 0, 1;
0, 0, 0, 0, 1;
0, 0, 0, -1, 0, 1;
-1, 0, 0, 0, 0, 0, 1;
0, -1, 0, 0, 0, 0, 0, 1;
1, 0, -1, 0, 0, 0, -1, 0, 1;
0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 1;
MATHEMATICA
M[n_, k_]:= M[n, k] = If[k>n, 0, Mod[Sum[JacobiSymbol[Binomial[n, j], 3]*JacobiSymbol[Binomial[n-j, k], 3], {j, 0, n}], 2], 0];
m:= m= With[{q=60}, Table[M[n, k], {n, 0, q}, {k, 0, q}]];
T[n_, k_]:= Inverse[m][[n+1, k+1]];
Table[T[n, k], {n, 0, 15}, {k, 0, n}]//Flatten (* G. C. Greubel, Oct 29 2021 *)
CROSSREFS
Sequence in context: A093317 A127253 A117944 * A128937 A288004 A102511
KEYWORD
sign,tabl
AUTHOR
Paul Barry, Apr 05 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 April 16 16:35 EDT 2024. Contains 371749 sequences. (Running on oeis4.)