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!)
A229655 Quintisection a(5n+k) gives k-th differences of a for k=0..4 with a(n)=0 for n<4 and a(4)=1. 8
0, 0, 0, 0, 1, 0, 0, 0, 1, -4, 0, 0, 1, -3, 6, 0, 1, -2, 3, -4, 1, -1, 1, -1, 2, 0, 0, 0, 1, -8, 0, 0, 1, -7, 22, 0, 1, -6, 15, -28, 1, -5, 9, -13, 18, -4, 4, -4, 5, -11, 0, 0, 1, -6, 24, 0, 1, -5, 18, -46, 1, -4, 13, -28, 50, -3, 9, -15, 22, -33, 6, -6, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
LINKS
FORMULA
a(5*n) = a(n),
a(5*n+1) = a(n+1) - a(n),
a(5*n+2) = a(n+2) - 2*a(n+1) + a(n),
a(5*n+3) = a(n+3) - 3*a(n+2) + 3*a(n+1) - a(n),
a(5*n+4) = a(n+4) - 4*a(n+3) + 6*a(n+2) - 4*a(n+1) + a(n).
MAPLE
a:= proc(n) option remember; local m, q;
m:= irem(n, 5, 'q'); `if`(n<5, `if`(n=4, 1, 0),
add(a(q+m-j)*(-1)^j*binomial(m, j), j=0..m))
end:
seq(a(n), n=0..100);
MATHEMATICA
a[n_] := a[n] = Module[{ m, q}, {q, m} = QuotientRemainder[n, 5]; If[n < 5, If[n == 4, 1, 0], Sum[a[q + m - j]*(-1)^j*Binomial[m, j], {j, 0, m}]]];
Table[a[n], {n, 0, 100}] (* Jean-François Alcover, Jun 09 2018, from Maple *)
CROSSREFS
Sequence in context: A226997 A245965 A078669 * A335951 A254156 A344386
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)