Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A059429
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A059429 Cumulative boustrophedon transform of 1, 0, 0, 0, ... +0
3
1, 1, 2, 8, 51, 478, 6178, 105330, 2290069, 61839897, 2030449500, 79661186168, 3680458880352, 197781841355220, 12231649482909444, 862560715175755168, 68799732139319891208, 6162698115430291654438, 615995773861169229993018 (list; graph; listen)
OFFSET

0,3

COMMENT

For n>0, a(n) equals the element in the upper left corner of the matrix equal to the product of nXn matrices given by: Product_{k=1..n} M_k where M_k(r,c)=k+2-r-c when r+c<=k+1 and zeros elsewhere (see example). - Paul D. Hanna (pauldhanna(AT)juno.com), Feb 08 2007

FORMULA

See Maple code for precise description.

EXAMPLE

For n=5, the matrix product:

[1 0 0 0 0] [2 1 0 0 0] [3 2 1 0 0] [4 3 2 1 0] [5 4 3 2 1]

[0 0 0 0 0] [1 0 0 0 0] [2 1 0 0 0] [3 2 1 0 0] [4 3 2 1 0]

[0 0 0 0 0] [0 0 0 0 0] [1 0 0 0 0] [2 1 0 0 0] [3 2 1 0 0]

[0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [1 0 0 0 0] [2 1 0 0 0]

[0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [1 0 0 0 0]

equals the matrix below with a(n)=a(5)=478 in the upper left corner:

[478 362 246 138 51]

[__0 __0 __0 __0 _0]

[__0 __0 __0 __0 _0]

[__0 __0 __0 __0 _0]

[__0 __0 __0 __0 _0]

also a(n-1)=a(4)=51 will be in the upper right corner.

MAPLE

CBOUS2 := proc(a) option remember; local c, i, j, n, r: if whattype(a) <> list then RETURN([]); fi: n := min( nops(a), 60); for i from 0 to n-1 do c[i, 0] := a[i+1]; od; for i to n-1 do for j to i do c[i, j] := c[i, j-1] + add(c[i-1, i-r], r=1..j); od; od; RETURN([seq(c[i, i], i=0..n-1)]); end:

PROGRAM

(PARI) {a(n)=if(n==0, 1, prod(k=1, n, matrix(n, n, r, c, if(r+c<=k+1, k+2-r-c)))[1, 1])} - Paul D. Hanna (pauldhanna(AT)juno.com), Feb 08 2007

CROSSREFS

See the triangles in A059431 and A059432.

Sequence in context: A086922 A007128 A013085 this_sequence A018987 A030518 A123188

Adjacent sequences: A059426 A059427 A059428 this_sequence A059430 A059431 A059432

KEYWORD

nonn,easy,nice

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Jan 31 2001

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 November 25 20:09 EST 2009. Contains 167514 sequences.


AT&T Labs Research