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!)
A348267 Primes of the form q^3+r^5+s^7, where q,r,s are consecutive primes. 2

%I #21 Nov 11 2021 21:07:26

%S 19504103,410711297,895293793,19205982415663,27139128435043,

%T 122997897555661,2351321783571193,33026024797765183,44544286011297461,

%U 257023170905666323,630639912549644209,896737512757442999,2267254920439040789,2344105012311523369,25786002910400593997

%N Primes of the form q^3+r^5+s^7, where q,r,s are consecutive primes.

%C Exponent values (3,5,7) given by the prime triplet of the form p,p+2,p+4.

%e 19504103 is a term because 5^3+7^5+11^7 = 19504103 is prime;

%e 410711297 is a term because 11^3+13^5+17^7 = 410711297 is prime.

%t Select[(#[[1]]^3 + #[[2]]^5 + #[[3]]^7) & /@ Partition[Select[Range[1000], PrimeQ], 3, 1], PrimeQ] (* _Amiram Eldar_, Oct 11 2021 *)

%o (Sage)

%o def Q3R5S7(x):

%o return Primes().unrank(x)^3+Primes().unrank(x+1)^5+Primes().unrank(x+2)^7

%o A348267 = [Q3R5S7(x) for x in range(0,10^3) if Q3R5S7(x) in Primes()]

%Y Cf. A000040, A348313, A259772, A304292.

%K nonn

%O 1,1

%A _Dumitru Damian_, Oct 09 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 May 21 01:24 EDT 2024. Contains 372720 sequences. (Running on oeis4.)