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.

A253016 Numbers k such that 11^phi(k) == 1 (mod k^2), where phi(k) = A000010(k).

Original entry on oeis.org

71, 142, 284, 355, 497, 710, 994, 1420, 1491, 1988, 2485, 2840, 2982, 3976, 4970, 5680, 5964, 7455, 9940, 11928, 14910, 19880, 23856, 29820, 39760, 59640, 79520, 119280, 238560, 477120
Offset: 1

Views

Author

Felix Fröhlich, Dec 26 2014

Keywords

Comments

No further terms up to 10^9.
No more terms less than 10^10. - Robert G. Wilson v, Jan 18 2015
The first 30 terms are divisible by 71. Are there any terms not divisible by 71? - Robert Israel, Dec 30 2014
By Corollary 5.9 in Agoh, Dilcher, Skula (1997), if there are no further Wieferich primes to base 11 apart from 71, then the answer is no. - Felix Fröhlich, Dec 30 2014

Crossrefs

Programs

  • Maple
    select(t -> 11 &^ numtheory:-phi(t) mod t^2 = 1, [$1..10^6]); # Robert Israel, Dec 30 2014
  • Mathematica
    a253016[n_] := Select[Range[n], PowerMod[11,EulerPhi[#], #^2] == 1 &]; a253016[500000] (* Michael De Vlieger, Dec 29 2014; modified by Robert G. Wilson v, Jan 18 2015 *)
  • PARI
    for(n=2, 1e9, if(Mod(11, n^2)^(eulerphi(n))==1, print1(n, ", ")))