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.

A189465 Positions of 1 in A189463.

Original entry on oeis.org

2, 6, 7, 10, 11, 15, 19, 23, 24, 27, 28, 32, 36, 40, 44, 45, 49, 53, 57, 61, 62, 65, 66, 70, 74, 78, 79, 82, 83, 87, 91, 95, 96, 99, 100, 104, 108, 112, 116, 117, 121, 125, 129, 133, 134, 137, 138, 142, 146, 150, 151, 154, 155, 159, 163, 167, 168, 171, 172, 176, 180, 184, 188, 189, 193, 197, 201, 205, 206, 209, 210, 214, 218
Offset: 1

Views

Author

Clark Kimberling, Apr 22 2011

Keywords

Comments

See A189463.

Crossrefs

Programs

  • Mathematica
    r = 5^(1/2);
    f[n_] := Floor[3 n*r] - 3*Floor[n*r];
    t = Table[f[n], {n, 1, 220}] (* A189463 *)
    Flatten[Position[t, 0]]   (* A189464 *)
    Flatten[Position[t, 1]]   (* A189465 *)
    Flatten[Position[t, 2]]   (* A190158 *)