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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A140944 Triangle T(d,n) read by rows, the n-th term of the d-th differences of the Jacobsthal sequence A001045. 3
0, 1, 0, -1, 2, 0, 3, -2, 4, 0, -5, 6, -4, 8, 0, 11, -10, 12, -8, 16, 0, -21, 22, -20, 24, -16, 32, 0, 43, -42, 44, -40, 48, -32, 64, 0, -85, 86, -84, 88, -80, 96, -64, 128, 0, 171, -170, 172, -168, 176, -160, 192, -128, 256, 0, -341, 342, -340, 344, -336, 352, -320, 384, -256, 512, 0 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

A variant of the triangle A140503, now including the diagonal.

Since the diagonal contains zeros, rows sums are those of A140503.

FORMULA

T(d,n)=T(d-1,n+1)-T(d-1,n). T(0,n)=A001045(n).

MAPLE

A001045 := proc(n) if n <= 1 then n; else procname(n-1)+2*procname(n-2) ; fi; end:

A140944 := proc(d, n) if d = 0 then A001045(n) ; else procname(d-1, n+1)-procname(d-1, n) ; fi; end: seq(seq(A140944(d, n), n=0..d), d=0..10) ; # R. J. Mathar, Sep 07 2009

CROSSREFS

Cf. A140503.

Sequence in context: A077962 A078031 A089196 * A057860 A092915 A063749

Adjacent sequences:  A140941 A140942 A140943 * A140945 A140946 A140947

KEYWORD

sign,tabl

AUTHOR

Paul Curtz (bpcrtz(AT)free.fr), Jul 24 2008

EXTENSIONS

Edited and extended by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Sep 07 2009

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 17 07:41 EST 2012. Contains 205998 sequences.