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.

A015903 Numbers n such that n | 11^n + 11.

Original entry on oeis.org

1, 2, 4, 6, 11, 12, 22, 44, 66, 132, 148, 276, 671, 814, 1068, 2388, 3498, 24564, 29234, 54924, 60126, 80476, 80526, 85866, 212532, 234652, 252967, 307396, 368668, 700404, 885786, 1121044, 1350812, 1366476, 1631004, 1697116, 1698906, 1718431, 1803166, 2637811, 3186678, 3704196, 4888236, 8990356
Offset: 1

Views

Author

Keywords

Programs

  • Maple
    filter:= n -> 11 &^ n + 11 mod n = 0:
    select(filter, [$1..2*10^6]); # Robert Israel, Sep 13 2018
  • PARI
    isok(n) = Mod(11, n)^n + Mod(11, n) == 0; \\ Michel Marcus, Sep 13 2018

Extensions

Corrected and extended by Robert Israel, Sep 13 2018