Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A142595
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A142595 Triangle read by rows: t(n,k)=t(n - 1, k - 1) + 2* t(n - 1, k) + t(n - 1, k - 1). +0
1
1, 1, 1, 1, 4, 1, 1, 10, 10, 1, 1, 22, 40, 22, 1, 1, 46, 124, 124, 46, 1, 1, 94, 340, 496, 340, 94, 1, 1, 190, 868, 1672, 1672, 868, 190, 1, 1, 382, 2116, 5080, 6688, 5080, 2116, 382, 1, 1, 766, 4996, 14392, 23536, 23536, 14392, 4996, 766, 1 (list; table; graph; listen)
OFFSET

1,5

COMMENT

Symmetrical recursion of the Pascal triangle type.

Row sums are: {1, 2, 6, 22, 86, 342, 1366, 5462, 21846, 87382, ...}.

This triangle sequence is dominated by the Eulerian numbers A008292.

FORMULA

a(n)=2*Join[a(n - 1), {-1/2}] + 2*Join[{-1/2}, a(n - 1)]. [From Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Dec 09 2008]

EXAMPLE

{1},

{1, 1},

{1, 4, 1},

{1, 10, 10, 1},

{1, 22, 40, 22, 1},

{1, 46, 124, 124, 46, 1},

{1, 94, 340, 496, 340, 94, 1},

{1, 190, 868, 1672, 1672, 868, 190, 1},

{1, 382, 2116, 5080, 6688, 5080, 2116, 382, 1},

{1, 766, 4996, 14392, 23536, 23536, 14392, 4996, 766, 1}

MATHEMATICA

A[n_, 1] := 1 A[n_, n_] := 1 A[n_, k_] := A[n - 1, k - 1] + 2* A[n - 1, k] + A[n - 1, k - 1]; a = Table[A[n, k], {n, 10}, {k, n}]; Flatten[a]

Contribution from Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Dec 09 2008: (Start)

Clear[a];

a[0] = {1}; a[1] = {1, 1};

a[n_] := a[n] = 2*Join[a[n - 1], {-1/2}] + 2*Join[{-1/2}, a[n - 1]];

Table[a[n], {n, 0, 10}];

Flatten[%] (End)

CROSSREFS

Cf. A008292, A119258.

Sequence in context: A089447 A082680 A056939 this_sequence A140711 A164366 A121692

Adjacent sequences: A142592 A142593 A142594 this_sequence A142596 A142597 A142598

KEYWORD

nonn,tabl

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Sep 22 2008

EXTENSIONS

Edited by N. J. A. Sloane (njas(AT)research.att.com), Dec 11 2008

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 17 23:40 EST 2009. Contains 171025 sequences.


AT&T Labs Research