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!)
A110242 A Jacobi triangle. 7
1, 1, 1, -1, -1, 1, -1, -1, 0, 1, 1, 1, 1, 1, 1, 1, 1, -1, 0, -1, 1, -1, -1, 0, -1, 1, 0, 1, -1, -1, -1, 1, 0, -1, 1, 1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, -1, -1, -1, 0, 1, -1, 1, -1, 0, 1, 1, -1, -1, 1, -1, -1, -1, 0, 1, 1, 1, -1, 1, 1, 1, 0, -1, -1, 0, 1, 1, 0, -1, -1, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
T(n, k) = if(k<=n, Jacobi(n, 2n-2k+1), 0).
EXAMPLE
Rows begin
1;
1,1;
-1,-1,1;
-1,-1,0,1;
1,1,1,1,1;
1,1,-1,0,-1,1;
MAPLE
A110242 := proc(n, k)
if k<0 or k> n then
0;
else
numtheory[jacobi](n, 2*n-2*k+1) ;
end if;
end proc: # R. J. Mathar, Feb 20 2015
MATHEMATICA
T[n_, k_] := JacobiSymbol[n, 2n - 2k + 1];
Table[T[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Jean-François Alcover, Mar 29 2020 *)
CROSSREFS
Row sums are A110243. Diagonal sums are A110244. Inverse is A110245.
Sequence in context: A353628 A359551 A353458 * A356315 A273592 A279693
KEYWORD
easy,sign,tabl
AUTHOR
Paul Barry, Jul 17 2005
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 6 17:29 EDT 2024. Contains 373134 sequences. (Running on oeis4.)