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.

A333762 Fixed points of A333692.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 20, 21, 24, 28, 30, 31, 32, 33, 34, 36, 40, 42, 48, 55, 56, 60, 62, 63, 64, 65, 66, 68, 72, 73, 80, 84, 85, 96, 103, 110, 112, 120, 124, 126, 127, 128, 129, 130, 132, 136, 144, 146, 160, 168, 170, 181
Offset: 1

Views

Author

Rémy Sigrist, Apr 04 2020

Keywords

Comments

For any n >= 0, n belongs to this sequence iff 2*n also belongs to this sequence.
This sequence contains A000079, A000225, A018900, A023758, A295235.

Crossrefs

Programs

  • PARI
    is(n, base=2)={ my (b=digits(n, base), p=[]); for (k=1, #b, p=concat(p, b[k]); if (b[k], p=Vecrev(p))); n==fromdigits(p, base) }