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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A059781 Triangle T(n,k) giving exponent of power of 2 dividing entry (n,k) of trinomial triangle A027907. 0
0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 1, 4, 0, 4, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 3, 2, 4, 1, 3, 4, 3, 0, 3, 4, 3, 1, 4, 2, 3, 0, 0, 0, 0, 2, 1, 1, 1, 8, 0, 0, 0, 8, 1, 1, 1, 2, 0, 0, 0, 0, 1, 0, 1, 0 (list; graph; refs; listen; history; internal format)
OFFSET

0,18

REFERENCES

B. A. Bondarenko, Generalized Pascal Triangles and Pyramids (in Russian), FAN, Tashkent, 1990, ISBN 5-648-00738-8. English translation published by Fibonacci Association, Santa Clara Univ., Santa Clara, CA, 1993; see p. 117.

EXAMPLE

0; 0,0,0; 0,1,0,1,0; ...

MAPLE

with(numtheory): T := proc(i, j) option remember: if i >= 0 and j=0 then RETURN(1) fi: if i >= 0 and j=2*i then RETURN(1) fi: if i >= 1 and j=1 then RETURN(i) fi: if i >= 1 and j=2*i-1 then RETURN(i) fi: T(i-1, j-2)+T(i-1, j-1)+T(i-1, j): end: for i from 0 to 20 do for j from 0 to 2*i do if T(i, j) mod 2 = 1 then printf(`%d, `, 0) else printf(`%d, `, ifactors(T(i, j))[2, 1, 2] ) fi: od:od:

CROSSREFS

Sequence in context: A048614 A001442 A158285 * A087664 A158032 A120112

Adjacent sequences:  A059778 A059779 A059780 * A059782 A059783 A059784

KEYWORD

nonn,easy,tabf

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Feb 22 2001

EXTENSIONS

More terms and Maple code from James A. Sellers (sellersj(AT)math.psu.edu), Feb 22 2001

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 15 10:28 EST 2012. Contains 205763 sequences.