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.

A044236 Numbers k such that string 6,1 occurs in the base 8 representation of k but not of k-1.

Original entry on oeis.org

49, 113, 177, 241, 305, 369, 392, 433, 497, 561, 625, 689, 753, 817, 881, 904, 945, 1009, 1073, 1137, 1201, 1265, 1329, 1393, 1416, 1457, 1521, 1585, 1649, 1713, 1777, 1841, 1905, 1928, 1969, 2033, 2097, 2161, 2225, 2289, 2353
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A007094.

Programs

  • Mathematica
    A044236Q[k_] := StringContainsQ[IntegerString[k, 8], "61"] && StringFreeQ[IntegerString[k - 1, 8], "61"];
    Select[Range[5000], A044236Q] (* Paolo Xausa, Sep 03 2025 *)