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.

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

Original entry on oeis.org

45, 109, 173, 237, 301, 360, 429, 493, 557, 621, 685, 749, 813, 872, 941, 1005, 1069, 1133, 1197, 1261, 1325, 1384, 1453, 1517, 1581, 1645, 1709, 1773, 1837, 1896, 1965, 2029, 2093, 2157, 2221, 2285, 2349, 2408, 2477, 2541
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A007094.

Programs

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