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-1 of 1 results.

A194149 Sum_{floor(j*(5-sqrt(3))/2) : 1<=j<=n}; n-th partial sum of Beatty sequence for (5-sqrt(3))/2.

Original entry on oeis.org

1, 4, 8, 14, 22, 31, 42, 55, 69, 85, 102, 121, 142, 164, 188, 214, 241, 270, 301, 333, 367, 402, 439, 478, 518, 560, 604, 649, 696, 745, 795, 847, 900, 955, 1012, 1070, 1130, 1192, 1255, 1320, 1386, 1454, 1524, 1595, 1668, 1743, 1819, 1897, 1977
Offset: 1

Views

Author

Clark Kimberling, Aug 17 2011

Keywords

Crossrefs

Cf. A182772 (Beatty sequence for (5-sqrt(3))/2).

Programs

  • Mathematica
    c[n_] := Sum[Floor[j*(5-Sqrt[3])/2], {j, 1, n}];
    c = Table[c[n], {n, 1, 90}]
Showing 1-1 of 1 results.