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!)
A229657 7-section a(7n+k) gives k-th differences of a for k=0..6 with a(n)=0 for n<6 and a(6)=1. 8

%I #8 Jan 27 2014 11:19:59

%S 0,0,0,0,0,0,1,0,0,0,0,0,1,-6,0,0,0,0,1,-5,15,0,0,0,1,-4,10,-20,0,0,1,

%T -3,6,-10,15,0,1,-2,3,-4,5,-6,1,-1,1,-1,1,-1,2,0,0,0,0,0,1,-12,0,0,0,

%U 0,1,-11,51,0,0,0,1,-10,40,-110,0,0,1,-9,30,-70

%N 7-section a(7n+k) gives k-th differences of a for k=0..6 with a(n)=0 for n<6 and a(6)=1.

%H Alois P. Heinz, <a href="/A229657/b229657.txt">Table of n, a(n) for n = 0..10000</a>

%F a(7*n+k) = Sum_{j=0..k} (-1)^j * C(k,j) * a(n+k-j) for k=0..6.

%p a:= proc(n) option remember; local m, q;

%p m:= irem(n, 7, 'q'); `if`(n<7, `if`(n=6, 1, 0),

%p add(a(q+m-j)*(-1)^j*binomial(m, j), j=0..m))

%p end:

%p seq(a(n), n=0..100);

%Y Cf. A005590, A229653, A229654, A229655, A229656, A229658, A229659, A229660.

%K sign,eigen,look

%O 0,14

%A _Alois P. Heinz_, Sep 27 2013

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 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)