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.

A080600 a(n) = ceiling(n*(3 + sqrt(13))/2).

Original entry on oeis.org

0, 4, 7, 10, 14, 17, 20, 24, 27, 30, 34, 37, 40, 43, 47, 50, 53, 57, 60, 63, 67, 70, 73, 76, 80, 83, 86, 90, 93, 96, 100, 103, 106, 109, 113, 116, 119, 123, 126, 129, 133, 136, 139, 143, 146, 149, 152, 156, 159, 162, 166, 169, 172, 176, 179, 182, 185, 189
Offset: 0

Views

Author

N. J. A. Sloane, Mar 23 2003

Keywords

Comments

a(0)=0, a(1)=4; for n > 1, a(n) = a(n-1) + 4 if n is already in the sequence, a(n) = a(n-1) + 3 otherwise.
In the Fokkink-Joshi paper, this sequence is the Cloitre (0,4,4,3)-hiccup sequence. - Michael De Vlieger, Jul 29 2025

Crossrefs

Equals A080081 + 1 for n > 0. Cf. A080455-A080458, A080036, A080037.

Programs

  • Mathematica
    With[{c=(3+Sqrt[13])/2},Table[Ceiling[c*n],{n,0,60}]] (* Harvey P. Dale, Oct 30 2021 *)