login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A108349 Main diagonal of Fibonacci-type array in which each term is equal to the term above multiplied by the term to the left. 1
1, 1, 2, 24, 25920, 1511654400000, 11882514930204672000000000000000, 3711388892113415871206624306663300844748800000000000000000000000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(9) has 178 digits. - R. J. Mathar, Aug 26 2008
LINKS
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: # R. J. Mathar, Aug 26 2008
CROSSREFS
Sequence in context: A137888 A229333 A338152 * A361431 A000722 A098679
KEYWORD
nonn,easy
AUTHOR
Brock J Nash (Brocknash(AT)wah.midco.net), Aug 17 2008
EXTENSIONS
a(6)-a(8) from R. J. Mathar, Aug 26 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 10 06:43 EDT 2024. Contains 372358 sequences. (Running on oeis4.)