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!)
A229660 10-section a(10n+k) gives k-th differences of a for k=0..9 with a(n)=0 for n<9 and a(9)=1. 8
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, -9, 0, 0, 0, 0, 0, 0, 0, 1, -8, 36, 0, 0, 0, 0, 0, 0, 1, -7, 28, -84, 0, 0, 0, 0, 0, 1, -6, 21, -56, 126, 0, 0, 0, 0, 1, -5, 15, -35, 70, -126, 0, 0, 0, 1, -4, 10, -20, 35, -56, 84, 0, 0, 1, -3, 6, -10 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,20
LINKS
FORMULA
a(10*n+k) = Sum_{j=0..k} (-1)^j * C(k,j) * a(n+k-j) for k=0..9.
MAPLE
a:= proc(n) option remember; local m, q;
m:= irem(n, 10, 'q'); `if`(n<10, `if`(n=9, 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: A193581 A270034 A228635 * A306757 A340982 A334624
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 April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)