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!)
A077497 Primes of the form 2^r*5^s + 1. 10

%I #33 Sep 19 2022 19:32:51

%S 2,3,5,11,17,41,101,251,257,401,641,1601,4001,16001,25601,40961,62501,

%T 65537,160001,163841,16384001,26214401,40960001,62500001,104857601,

%U 167772161,256000001,409600001,655360001,2441406251,2500000001,4194304001,10485760001

%N Primes of the form 2^r*5^s + 1.

%C These are also the prime numbers p for which there is an integer solution x to the equation p*x = p*10^p + x, or equivalently, the prime numbers p for which (p*10^p)/(p-1) is an integer. - _Vicente Izquierdo Gomez_, Feb 20 2013

%C For n > 2, all terms are congruent to 5 (mod 6). - _Muniru A Asiru_, Sep 03 2017

%H Ray Chandler, <a href="/A077497/b077497.txt">Table of n, a(n) for n = 1..3150</a>

%e 101 is in the sequence, since 101 = 2^2*5^2 + 1 and 101 is prime.

%t Do[p=Prime[k];s=FindInstance[p x == p 10^p+x,x,Integers];If[s!={},Print[p]],{k,10000}] (* _Vicente Izquierdo Gomez_, Feb 20 2013 *)

%o (PARI) list(lim)=my(v=List(),t);for(r=0,log(lim)\log(5),t=5^r;while(t<=lim,if(isprime(t+1),listput(v,t+1)); t<<=1)); vecsort(Vec(v)) \\ _Charles R Greathouse IV_, Jan 29 2013

%o (GAP)

%o K:=10^7;; # to get all terms <= K.

%o A:=Filtered(Filtered([1..K],i-> i mod 6=5),IsPrime);;

%o B:=List(A,i->Factors(i-1));;

%o C:=[];; for i in B do if Elements(i)=[2] or Elements(i)=[2,5] then Add(C,Position(B,i)); fi; od;

%o A077497:=Concatenation([2,3],List(C,i->A[i])); # _Muniru A Asiru_, Sep 03 2017

%Y Cf. A005109, A077497, A077498, A077500, A003592, A077313, A019434.

%K nonn

%O 1,1

%A _Amarnath Murthy_, Nov 07 2002

%E Corrected and extended by _Reinhard Zumkeller_, Nov 19 2002

%E More terms from _Ray Chandler_, Aug 02 2003

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 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)