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.

A387088 Fixed points of A386482: numbers k such that A386482(k) = k.

Original entry on oeis.org

1, 2, 40, 49, 51, 98, 105, 3507, 3693, 4615, 5745, 6167, 32775, 102840, 106971, 2141244, 2419715, 4395321, 5855239, 6933770, 10440279, 20082095, 55680314, 95376809, 205626971, 240438171, 319745247, 346832939, 432366596, 877644251
Offset: 1

Views

Author

Rémy Sigrist, Aug 16 2025

Keywords

Examples

			A386482(40) = 40, so 40 belongs to this sequence.
		

Crossrefs

Programs

  • PARI
    \\ See Links section.
    
  • Python
    # uses generator/imports from A386482
    def A387088_gen(): yield from (k for k, ak in enumerate(A386482_gen(), 1) if k == ak)
    print(list(islice(A387088_gen(), 15))) # Michael S. Branicky, Aug 17 2025
    (C++) // See Links section.

Extensions

a(23)-a(30) from Rémy Sigrist, Sep 03 2025