login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141604 Combination-like triangle of coefficients made using Somos4 ;A006720; t(n,m)=A0006720(n)/(A0006720(n-m)*A0006720(m)). 0
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 1, 2, 4, 7, 4, 2, 1, 1, 3, 8, 12, 12, 8, 3, 1, 1, 3, 8, 20, 15, 20, 8, 3, 1, 1, 5, 14, 45, 52, 52, 45, 14, 5, 1, 1, 5, 26, 66, 109, 170, 109, 66, 26, 5, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,12

COMMENTS

Row sums are:

{1, 2, 3, 4, 8, 12, 21, 48, 79, 234, 584}.

A lot about the Somos(n) sequences is explained if they are behaving like modified permutations.

FORMULA

t(n,m)=A0006720(n)/(A0006720(n-m)*A0006720(m)).

EXAMPLE

{1},

{1, 1},

{1, 1, 1},

{1, 1, 1, 1},

{1, 2, 2, 2, 1},

{1, 2, 3, 3, 2, 1},

{1, 2, 4, 7, 4, 2, 1},

{1, 3, 8, 12, 12, 8, 3, 1},

{1, 3, 8, 20, 15, 20, 8, 3, 1},

{1, 5, 14, 45, 52, 52, 45, 14, 5, 1},

{1, 5, 26, 66, 109, 170, 109, 66, 26, 5, 1}

MATHEMATICA

Clear[a, t] (*A006720*) (*Robert G.Wilson v (rgwv(AT)rgwv.com), Jul 04 2007*) a[0] = a[1] = a[2] = a[3] = 1; a[n_] := a[n] = (a[n - 1] a[n - 3] + a[n - 2]^2)/a[n - 4]; Array[a, 23]; t[n_, m_] := a[n]/(a[n - m]*a[m]) Table[Table[Round[t[n, m]], {m, 0, n}], {n, 0, 10}]; Flatten[%]

CROSSREFS

Cf. A006720.

Sequence in context: A190321 A134143 A085684 * A143996 A171412 A071338

Adjacent sequences:  A141601 A141602 A141603 * A141605 A141606 A141607

KEYWORD

nonn,uned,tabl

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Aug 21 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 02:30 EST 2012. Contains 205860 sequences.