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!)
A083735 Pseudoprimes to bases 3 and 7. 3
703, 1105, 2465, 10585, 18721, 19345, 29341, 38503, 46657, 50881, 75361, 76627, 88831, 104653, 115921, 146611, 162401, 188191, 213265, 226801, 252601, 278545, 286903, 294409, 314821, 334153, 340561, 359341, 385003, 385201, 399001, 410041 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..16479 (terms 1..151 from R. J. Mathar)
FORMULA
a(n) = n-th positive integer k(>1) such that 3^(k-1) = 1 (mod k) and 7^(k-1) = 1 (mod k).
EXAMPLE
a(1)=703 since it is the first number such that 3^(k-1) = 1 (mod k) and 7^(k-1) = 1 (mod k).
MATHEMATICA
Select[Range[420000], !PrimeQ[#]&&PowerMod[3, #-1, #]==1&&PowerMod[7, #-1, #] == 1&] (* Harvey P. Dale, Mar 08 2014 *)
PROG
(PARI) is(n)=!isprime(n)&&Mod(7, n)^(n-1)==1&&Mod(3, n)^(n-1)==1 \\ Charles R Greathouse IV, Apr 12 2012
CROSSREFS
Intersection of A005935 and A005938. - R. J. Mathar, Apr 05 2011
Sequence in context: A035852 A214486 A045146 * A161021 A283521 A334010
KEYWORD
nonn
AUTHOR
Serhat Sevki Dincer (sevki(AT)ug.bilkent.edu.tr), May 05 2003
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 April 16 04:02 EDT 2024. Contains 371696 sequences. (Running on oeis4.)