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.

A087441 Numbers k such that for every prime divisor p of k, p-1 divides k-1.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 27, 29, 31, 32, 37, 41, 43, 45, 47, 49, 53, 59, 61, 64, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 125, 127, 128, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199, 211
Offset: 1

Views

Author

Jens Voß, Sep 04 2003

Keywords

Comments

This sequence contains all powers of prime numbers (A000961). The remaining numbers form the sequence A087442.

Examples

			45 is in A087441 because its prime divisors are 3 and 5 and 3-1 = 2 as well as 5-1 = 4 divide 45-1 = 44.
		

Crossrefs

Programs

  • GAP
    for i in [1..225] do if i = 1 or IsSubset (DivisorsInt(i-1), Set (FactorsInt (i)) - 1) then Print (i, ", "); fi; od;
  • Mathematica
    Join[{1},Select[Range[2,300],And@@Divisible[#-1,FactorInteger[#][[All, 1]]-1]&]] (* Harvey P. Dale, Aug 07 2019 *)