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.

Showing 1-1 of 1 results.

A303608 Repunit pseudoprimes: composite numbers k such that (10^k - 1)/9 == 1 (mod k).

Original entry on oeis.org

10, 55, 91, 259, 370, 385, 451, 481, 505, 703, 715, 1045, 1105, 1729, 2035, 2465, 2821, 2981, 3367, 4141, 4187, 5005, 5461, 6533, 6541, 6565, 6601, 7471, 7777, 8149, 8401, 8695, 8905, 8911, 10001, 10585, 11111, 12403, 13366, 13981, 14245, 14645, 14701, 14911, 15211, 15841, 18685
Offset: 1

Views

Author

Thomas Ordowski, Apr 27 2018

Keywords

Comments

Composite numbers k such that 10^k == 10 (mod 9k).
If k is a term, then so is (10^k - 1)/9. Thus, the sequence is infinite.
No terms are divisible by 3. - Robert Israel, May 28 2018

Examples

			(10^10 - 1)/9 = 1111111111 == 1 (mod 10), so the composite 10 is a term.
Equivalently, we have the congruence 10^10 == 10 (mod 9*10).
		

Crossrefs

A000864 is a subsequence.
Composite numbers in A067934. - Michel Marcus, Apr 27 2018

Programs

  • Maple
    filter:=  n -> n mod 3 <> 0 and (10&^n - 10) mod n = 0\ and not isprime(n):
    select(filter,[$4..10^5]); # Robert Israel, May 28 2018
  • Mathematica
    Select[Range@ 20000, ! PrimeQ@# && PowerMod[10, #, 9 #] == 10 &] (* Robert G. Wilson v, Apr 28 2018 *)
  • PARI
    isok(n) = (n>1) && !isprime(n) && Mod(10, 9*n)^n == 10; \\ Michel Marcus, Apr 28 2018

Extensions

a(4) onward from Robert G. Wilson v, Apr 27 2018
Showing 1-1 of 1 results.