login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157415 Triangle t(n,m) = Jacobi(prime(n) / prime(m)) + Jacobi( prime(n)/ prime(n-m+2)), 2<=m<=n. 1
0, -1, -1, 1, -2, 1, -1, 2, 2, -1, 1, -2, -2, -2, 1, -1, 0, -2, -2, 0, -1, 1, 2, -2, -2, -2, 2, 1, -1, 0, 0, 2, 2, 0, 0, -1, -1, 2, 0, -2, 2, -2, 0, 2, -1, 1, 0, 0, 0, -2, -2, 0, 0, 0, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

2,5

COMMENTS

Row sums are 0, -2, 0, 2, -4, -6, 0, 2, 0, -2,...

FORMULA

t(n,m) = A157412(n,m)+A157412(n,n-m+2). - R. J. Mathar, Sep 12 2011

EXAMPLE

0;

-1, -1;

1, -2, 1;

-1, 2, 2, -1;

1, -2, -2, -2, 1;

-1, 0, -2, -2, 0, -1;

1, 2, -2, -2, -2, 2, 1;

-1, 0, 0, 2, 2, 0, 0, -1;

-1, 2, 0, -2, 2, -2, 0, 2, -1;

1, 0, 0, 0, -2, -2, 0, 0, 0, 1;

MAPLE

A157412 := proc(n, m)

        numtheory[jacobi](ithprime(n), ithprime(m

end proc:

A157415 := proc(n, m)

        A157412(n, m)+A157412(n, n-m+2) ;

end proc:

seq(seq(A157415(n, m), m=2..n), n=2..13) ; # R. J. Mathar, Sep 12 2011

MATHEMATICA

Table[Table[JacobiSymbol[Prime[n], Prime[m]] + JacobiSymbol[Prime[n], Prime[n - m + 2]], {m, 2, n}], {n, 2, 11}];

Flatten[%]

CROSSREFS

Sequence in context: A023589 A134034 A174886 * A154325 A129765 A143187

Adjacent sequences:  A157412 A157413 A157414 * A157416 A157417 A157418

KEYWORD

sign,tabl

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Feb 28 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 07:09 EST 2012. Contains 205873 sequences.