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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141020 Pascal-like triangle with index of asymmetry y=4 and index of obliqueness z=0. 3
1, 1, 1, 1, 2, 1, 1, 4, 2, 1, 1, 8, 4, 2, 1, 1, 16, 8, 4, 2, 1, 1, 32, 16, 8, 4, 2, 1, 1, 63, 33, 16, 8, 4, 2, 1, 1, 124, 67, 33, 16, 8, 4, 2, 1, 1, 244, 136, 67, 33, 16, 8, 4, 2, 1, 1, 480, 276, 136, 67, 33, 16, 8, 4, 2, 1, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

The left column is set to 1. The four rightmost columns start with powers of 2:

T(n,0)=T(n,n)=1; T(n,n-1)=2; T(n,n-2)=4; T(n,n-3)=8;

T(n,n-4)=16. Recurrence: T(n,k) = T(n-1,k) + T(n-2,k) + T(n-3,k) + T(n-4,k) + T(n-5,k) + T(n-5,k-1), k=1..n-5.

EXAMPLE

Pascal-like triangle (y=4, z=0) begins:

1

1 1

1 2 1

1 4 2 1

1 8 4 2 1

1 16 8 4 2 1

1 32 16 8 4 2 1

1 63 33 16 8 4 2 1

1 124 67 33 16 8 4 2 1

1 244 136 67 33 16 8 4 2 1

1 480 276 136 67 33 16 8 4 2 1

1 944 560 276 136 67 33 16 8 4 2 1

MAPLE

A141020 := proc(n, k) option remember ; if k<0 or k>n then 0 ; elif k=0 or k=n then 1 ; elif k=n-1 then 2 ; elif k=n-2 then 4 ; elif k=n-3 then 8 ; elif k=n-4 then 16 ; else procname(n-1, k) +procname(n-2, k)+procname(n-3, k)+procname(n-4, k) +procname(n-5, k)+procname(n-5, k-1) ; fi; end:

for n from 0 to 20 do for k from 0 to n do printf("%d, ", A141020(n, k)) ; od: od: # R. J. Mathar, Sep 19 2008

CROSSREFS

Cf. A007318.

Sequence in context: A059623 A140997 A140996 * A152568 A057728 A155038

Adjacent sequences:  A141017 A141018 A141019 * A141021 A141022 A141023

KEYWORD

nonn,tabl

AUTHOR

Juri-Stepan Gerasimov (2stepan(AT)rambler.ru), Jul 11 2008

EXTENSIONS

Partially edited by N. J. A. Sloane (njas(AT)research.att.com), Jul 18 2008

Recurrence rewritten by R. J. Mathar, (mathar(AT)strw.leidenuniv.nl), Sep 19 2008

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 14 15:39 EST 2012. Contains 205635 sequences.