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!)
A217565 The smallest prime p that with its successor q gives prime counts of all ten base-10 digits for the expression (q^prime(n))*(p^prime(n+1)). 0

%I #41 Aug 23 2021 08:36:44

%S 33581,673,571,1987,915199,441799,2115761,961943,15406687,77123341,

%T 4098427,5526679,54560189,22291639,371594479,126499693,229299227,

%U 103196347,37851677,1198387109,801422893,966240103,281430131,926679973,154019941,196449137,243985993

%N The smallest prime p that with its successor q gives prime counts of all ten base-10 digits for the expression (q^prime(n))*(p^prime(n+1)).

%C This reverses the idea for A217049, with the smaller of successive primes being raised to the larger prime power. See that sequence for motivation.

%e (677^3)*(673^5) is the value corresponding to a(2). What this means is that the decimal representation of this number has a prime number of copies of each digit and no pair of successive primes in the same order and smaller than {673,677} has the same characteristic.

%t Table[p=2;While[!And@@PrimeQ[DigitCount[(p^Prime[n+1])*(NextPrime@p^Prime[n])]],p=NextPrime@p];p,{n,6}] (* _Giorgos Kalogeropoulos_, Aug 18 2021 *)

%o (Python)

%o from sympy import isprime, nextprime, prime

%o from sympy.ntheory import count_digits

%o def a(n):

%o pn = prime(n); qn = nextprime(pn)

%o p, q = 2, 3; c = count_digits((q**pn)*(p**qn))

%o while not all(isprime(c[i]) for i in range(10)):

%o p, q = q, nextprime(q); c = count_digits((q**pn)*(p**qn))

%o return p

%o print([a(n) for n in range(1, 7)]) # _Michael S. Branicky_, Aug 21 2021

%Y Cf. A217049.

%K nonn,base

%O 1,1

%A _James G. Merickel_, Oct 06 2012

%E a(15) added by _James G. Merickel_, Oct 17 2012

%E Name clarified by _Tanya Khovanova_, Aug 17 2021

%E a(16)-a(20) added by _Giorgos Kalogeropoulos_, Aug 18 2021

%E a(21)-a(27) from _Michael S. Branicky_, Aug 22 2021

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 25 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)