Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A117334
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A117334 Triangle, read by rows, where column 0 is [1,-1,-2,-3,...,-n,...], and column k+1 is generated by the binomial transform of column k preceded by a zero (column k includes the k zeros above the main diagonal). +0
2
1, -1, 1, -2, 1, 1, -3, -2, 4, 1, -4, -13, 8, 8, 1, -5, -44, -3, 38, 13, 1, -6, -123, -117, 125, 101, 19, 1, -7, -314, -718, 205, 594, 213, 26, 1, -8, -761, -3314, -954, 2787, 1822, 393, 34, 1, -9, -1784, -13481, -12644, 9717, 12987, 4507, 663, 43, 1, -10, -4087, -51055, -90625, 12247, 79419, 43282, 9727, 1048 (list; table; graph; listen)
OFFSET

0,4

COMMENT

Row sums are all zeros after row 0.

FORMULA

T(n,k) = Sum_{i=k..n} C(n,i)*T(i-1,k-1) for k>0, with T(0,0)=1 and T(n,0)=-n for n>0.

EXAMPLE

To generate, start with [1,-1,-2,-3,-4,...] in column 0.

Then column 1 = BINOMIAL[0, 1,-1,-2,-3,-4,-5,...]

= [0,1,1,-2,-13,-44,-123,-314,-761,...];

column 2 = BINOMIAL[0, 0,1,1,-2,-13,-44,-123,-314,...]

= [0,0,1,4,8,-3,-117,-718,-3314,-13481,...];

column 3 = BINOMIAL[0, 0,0,1,4,8,-3,-117,-718,...]

= [0,0,0,1,8,38,125,205,-954,-12644,-90625,...]; etc.

Triangle begins:

1;

-1,1;

-2,1,1;

-3,-2,4,1;

-4,-13,8,8,1;

-5,-44,-3,38,13,1;

-6,-123,-117,125,101,19,1;

-7,-314,-718,205,594,213,26,1;

-8,-761,-3314,-954,2787,1822,393,34,1;

-9,-1784,-13481,-12644,9717,12987,4507,663,43,1;

-10,-4087,-51055,-90625,12247,79419,43282,9727,1048,53,1; ...

PROGRAM

(PARI) {T(n, k)=if(n<k|k<0, 0, if(n==k, 1, if(k==0, -n, sum(i=k, n, binomial(n, i)*T(i-1, k-1)))))}

CROSSREFS

Cf. A117335 (matrix inverse), A117336, A117337, A117338.

Adjacent sequences: A117331 A117332 A117333 this_sequence A117335 A117336 A117337

Sequence in context: A070036 A059779 A049346 this_sequence A071872 A141038 A093623

KEYWORD

sign,tabl

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Mar 08 2006

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 October 13 17:46 EDT 2008. Contains 145008 sequences.


AT&T Labs Research