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!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row sums: {2, 3, 5, 7, 10, 14, 19, 26, 36, 51, 74}.
LINKS
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 A112104 A059426
KEYWORD
nonn,uned
AUTHOR
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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)