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!)
A229659 9-section a(9n+k) gives k-th differences of a for k=0..8 with a(n)=0 for n<8 and a(8)=1. 8
0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, -8, 0, 0, 0, 0, 0, 0, 1, -7, 28, 0, 0, 0, 0, 0, 1, -6, 21, -56, 0, 0, 0, 0, 1, -5, 15, -35, 70, 0, 0, 0, 1, -4, 10, -20, 35, -56, 0, 0, 1, -3, 6, -10, 15, -21, 28, 0, 1, -2, 3, -4, 5, -6, 7, -8, 1, -1, 1, -1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,18
LINKS
FORMULA
a(9*n+k) = Sum_{j=0..k} (-1)^j * C(k,j) * a(n+k-j) for k=0..8.
MAPLE
a:= proc(n) option remember; local m, q;
m:= irem(n, 9, 'q'); `if`(n<9, `if`(n=8, 1, 0),
add(a(q+m-j)*(-1)^j*binomial(m, j), j=0..m))
end:
seq(a(n), n=0..100);
CROSSREFS
Sequence in context: A270033 A085121 A228634 * A306756 A340981 A079204
KEYWORD
sign,look,eigen
AUTHOR
Alois P. Heinz, Sep 27 2013
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 March 29 07:27 EDT 2024. Contains 371265 sequences. (Running on oeis4.)