Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A108349
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A108349 Main diagonal of Fibonacci-type array in which each term is equal to the term above multiplied by the term to the left. +0
1
1, 1, 2, 24, 25920, 1511654400000, 11882514930204672000000000000000, 3711388892113415871206624306663300844748800000000000000000000000000000000000 (list; graph; listen)
OFFSET

1,3

COMMENT

a(9) has 178 digits. [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 26 2008]

FORMULA

T(x, y) = T(x, y-1) * T(x-1, y) T(x, 1) = T(x-2, 1) + T(x-1, 1) T(1, 1) = 1 Direct Formula is T(x, x) for x = {1, 2, 3, 4...}

EXAMPLE

a(4) = T(4,4) = 24; 24 = 2 * 12 = (1 * 2) * (2 * 6) = (1 * 2) * (2 * (2 * 3)) See chart:

1 1 2 3 5 ... (Fibonacci)

- 1 2 6 15 T(x, 2)

- - 2 12 90 T(x, 3)

- - - 24 1080 T(x, 4)

MAPLE

A108349T := proc(n, i) option remember ; if n = 1 then combinat[fibonacci](i) ; else procname(n-1, i)*procname(n-1, i+1) ; fi; end: A108349 := proc(n) A108349T(n, 1) ; end: for n from 1 to 9 do printf("%d, ", A108349(n)) ; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 26 2008]

CROSSREFS

Sequence in context: A152687 A062716 A137888 this_sequence A000722 A098679 A123851

Adjacent sequences: A108346 A108347 A108348 this_sequence A108350 A108351 A108352

KEYWORD

nonn,easy

AUTHOR

Brock J Nash (Brocknash(AT)wah.midco.net), Aug 17 2008

EXTENSIONS

a(6)-a(8) from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 26 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 November 25 20:09 EST 2009. Contains 167514 sequences.


AT&T Labs Research