cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A173508 a(n) = ceiling(A173497(n)/2).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 4, 6, 8, 11, 15, 20, 28, 38, 52, 71, 97, 132, 181, 247, 337, 461, 629, 860, 1174, 1604, 2191, 2993, 4089, 5585, 7630, 10422, 14237, 19448, 26567, 36291, 49574, 67720, 92507, 126367, 172620, 235804, 322114
Offset: 0

Views

Author

Roger L. Bagula, Nov 23 2010

Keywords

Crossrefs

Programs

  • Maple
    A173497 := proc(n) option remember; if n <= 1 then op(n+1,[2,1]) ; else             procname(n-1)+procname(n-2)-floor(procname(n-2)/2) ; end if; end proc:
    A173508 := proc(n) ceil(A173497(n)/2) ; end proc:
    seq(A173508(n),n=0..60) ;

Extensions

Definition corrected, Mma code related to another sequence removed, sequence extended

A173513 a(n) = ceiling(A173510(n)/2).

Original entry on oeis.org

1, 1, 2, 2, 3, 3, 4, 5, 7, 9, 11, 14, 18, 23, 30, 38, 49, 63, 80, 103, 132, 169, 216, 277, 355, 454, 582, 745, 954, 1222, 1565, 2005, 2568, 3289, 4212, 5395, 6910, 8850, 11335, 14517, 18593, 23814, 30500, 39064, 50032, 64080, 82072, 105116, 134630, 172431, 220846
Offset: 0

Views

Author

Roger L. Bagula, Nov 23 2010

Keywords

Crossrefs

Programs

  • Mathematica
    l[0] = 2; l[1] = 1;
    l[n_] := l[n] = l[n - 1] + l[n - 2] - Floor[l[n - 1]/2]
    Table[l[n] - Floor[l[n]/2], {n, 0, 30}]

Formula

a(n) = A173510(n) - floor(A173510(n)/2).

Extensions

More terms from Amiram Eldar, Jul 05 2025
Showing 1-2 of 2 results.