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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A098493 Triangle T(n,k) read by rows: difference between A098489 and A098490 at triangular rows. 5
1, 0, -1, -1, -1, 1, -1, 1, 2, -1, 0, 3, 0, -3, 1, 1, 2, -5, -2, 4, -1, 1, -2, -7, 6, 5, -5, 1, 0, -5, 0, 15, -5, -9, 6, -1, -1, -3, 12, 9, -25, 1, 14, -7, 1, -1, 3, 15, -18, -29, 35, 7, -20, 8, -1, 0, 7, 0, -42, 14, 63, -42, -20, 27, -9, 1, 1, 4, -22, -24, 85, 14, -112, 42 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,9

COMMENTS

Also, coefficients of polynomials that have values in A098495 and A094954.

REFERENCES

A. Fink, R. K. Guy and M. Krusemeyer, Partitions with parts occurring at most thrice, in preparation.

FORMULA

T(n, k) = A098489[n(n+1)/2, k] - A098490[n(n+1)/2, k].

Recurrence: T(n, k) = T(n-1, k)-T(n-1, k-1)-T(n-2, k); T(n, k)=0 for n<0, k>n, k<0; T(n, n)=(-1)^n; T(n, n-1)=(-1)^n*(1-n).

G.f.: (1-x)/(1+(y-1)*x+x^2). [From Vladeta Jovovic (vladeta(AT)eunet.rs), Dec 14 2009]

EXAMPLE

{1} {0,-1} {-1,-1,1} {-1,1,2,-1} {0,3,0,-3,1}...

PROG

(PARI) T(n, k)=if(k>n||k<0||n<0, 0, if(k>=n-1, (-1)^n*if(k==n, 1, -k), if(n==1, 0, if(k==0, T(n-1, 0)-T(n-2, 0), T(n-1, k)-T(n-2, k)-T(n-1, k-1)))))

CROSSREFS

Columns include A010892, -A076118. Diagonals include A033999, A038608, (-1)^n*A000096. Row sums are in A057077.

Cf. A098494 (diagonal polynomials).

Sequence in context: A178780 A058558 A123973 * A058560 A131047 A143714

Adjacent sequences:  A098490 A098491 A098492 * A098494 A098495 A098496

KEYWORD

sign,tabl

AUTHOR

Ralf Stephan (ralf(AT)ark.in-berlin.de), Sep 12 2004

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 14 14:07 EST 2012. Contains 205623 sequences.