The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A323550 Numbers that can be expressed as (p - 1)*(q - 1) + 1, where p < q are primes. 1
3, 5, 7, 9, 11, 13, 17, 19, 21, 23, 25, 29, 31, 33, 37, 41, 43, 45, 47, 49, 53, 57, 59, 61, 65, 67, 71, 73, 79, 81, 83, 85, 89, 93, 97, 101, 103, 105, 107, 109, 113, 117, 121, 127, 131, 133, 137, 139, 141, 145, 149, 151, 157, 161, 163, 165, 167, 169, 173, 177, 179, 181, 185, 191, 193, 197, 199, 201, 205, 209 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If p < q are primes and a(n) = (p - 1)*(q - 1) + 1, then x^a(n) == x (mod p*q) for every integer x.
LINKS
EXAMPLE
181 is a term because 181 = (11 - 1)*(19 - 1) + 1. - Bernard Schott, Jan 19 2019
MATHEMATICA
nmax = 100;
pairs = Table[Table[(Prime[i] - 1)*(Prime[j] - 1) + 1, {i, 1, j - 1}], {j, 2, Prime[nmax]}];
(DeleteDuplicates@Sort@Flatten@pairs)[[1 ;; nmax]]
PROG
(PARI) isok(n) = {if (n % 2, forprime(p = 2, n, forprime(q = p+1, n, if (n == (p - 1)*(q - 1) + 1, return (1)); ); ); ); } \\ Michel Marcus, Feb 25 2019
CROSSREFS
Cf. A065091.
Sequence in context: A363691 A349174 A349177 * A165468 A353124 A354149
KEYWORD
nonn
AUTHOR
Andres Cicuttin, Jan 17 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 7 01:45 EDT 2024. Contains 373140 sequences. (Running on oeis4.)