login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A144462
A triangle sequence designed as a step function around the determinants: a(n)=A000045(n); t(n,m)=If[m == 0 || m == 1, 2 - m, If[ m < n, Ceiling[(a(m) - 1)/a(n) + 1], a(n) + 1]].
0
2, 2, 1, 2, 1, 2, 2, 1, 1, 3, 2, 1, 1, 2, 4, 2, 1, 1, 2, 2, 6, 2, 1, 1, 2, 2, 2, 9, 2, 1, 1, 2, 2, 2, 2, 14, 2, 1, 1, 2, 2, 2, 2, 2, 22, 2, 1, 1, 2, 2, 2, 2, 2, 2, 35, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 56
OFFSET
1,1
COMMENTS
Row sums: {2, 3, 5, 7, 10, 14, 19, 26, 36, 51, 74}.
FORMULA
a(n)=A000045(n); t(n,m)=If[m == 0 || m == 1, 2 - m, If[ m < n, Ceiling[(a(m) - 1)/a(n) + 1], a(n) + 1]].
EXAMPLE
{2},
{2, 1},
{2, 1, 2},
{2, 1, 1, 3},
{2, 1, 1, 2, 4},
{2, 1, 1, 2, 2, 6},
{2, 1, 1, 2, 2, 2, 9},
{2, 1, 1, 2, 2, 2, 2, 14},
{2, 1, 1, 2, 2, 2, 2, 2, 22},
{2, 1, 1, 2, 2, 2, 2, 2, 2, 35},
{2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 56}
MATHEMATICA
Clear[a, b, t, n, m]; a[n_] := Fibonacci[n]; t[n_, m_] := If[m == 0 || m == 1, 2 - m, If[ m < n, Ceiling[(a[m] - 1)/a[n] + 1], a[n] + 1]]; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
Cf. A000045.
Sequence in context: A264032 A366597 A251138 * A370559 A378301 A112104
KEYWORD
nonn,uned
AUTHOR
STATUS
approved