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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144460 A triangle sequence of determinants: a(n)=A000045(n)+1;b(n)=A000045(n+1)-1; t(n,m)=a(m)*b(n) - b(m)*a(n). 0
1, 1, 0, 2, 1, 1, 4, 4, 4, 4, 7, 8, 8, 9, 4, 12, 15, 15, 18, 12, 9, 20, 26, 26, 32, 24, 22, 12, 33, 44, 44, 55, 44, 44, 33, 22, 54, 73, 73, 92, 76, 79, 66, 56, 33, 88, 120, 120, 152, 128, 136, 120, 112, 88, 56 (list; graph; refs; listen; history; internal format)
OFFSET

1,4

COMMENTS

Row sums are:{1, 1, 4, 16, 36, 81, 162, 319, 602, 1120}.

FORMULA

a(n)=A000045(n)+1;b(n)=A000045(n+1)-1; t(n,m)=a(m)*b(n) - b(m)*a(n).

EXAMPLE

{1},

{1, 0},

{2, 1, 1},

{4, 4, 4, 4},

{7, 8, 8, 9, 4},

{12, 15, 15, 18, 12, 9},

{20, 26, 26, 32, 24, 22, 12},

{33, 44, 44, 55, 44, 44, 33, 22},

{54, 73, 73, 92, 76, 79, 66, 56, 33},

{88, 120, 120, 152, 128, 136, 120, 112, 88, 56}

MATHEMATICA

Clear[a, b, t, n, m] a[n_] := Fibonacci[n] + 1; b[0] = 0; b[1] = 1; b[n_] := b[n] = Fibonacci[n + 1] - 1; t[n_, m_] := a[m]*b[n] - b[m]*a[n]; Table[Table[t[n, m], {m, 0, n - 1}], {n, 1, 10}]; Flatten[%]

CROSSREFS

Cf. A000045.

Sequence in context: A123246 A122518 A129704 * A177263 A197380 A057785

Adjacent sequences:  A144457 A144458 A144459 * A144461 A144462 A144463

KEYWORD

nonn,uned

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Oct 08 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 15 12:59 EST 2012. Contains 205788 sequences.