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!)
A362677 Primes whose reversal + 1 is a cube. 0
7, 421, 827, 4733, 32831, 57571, 228301, 364751, 892079, 1932677, 2256713, 3684211, 4213591, 6751853, 7218259, 7887707, 8497033, 15720487, 19925251, 21055813, 28756943, 29547961, 47369149, 51881849, 55033973, 57954643, 59677001, 63062963, 74415157, 88535987 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From Jon E. Schoenfield, Jul 03 2023: (Start)
Equivalently, primes whose reversal is one less than the cube of a positive integer whose last digit is not a 1.
Since no prime starts or ends with a 0, reversing the prime will not change the number of digits, and since no prime consists only of 9's, adding 1 to its reversal will not change the number of digits, either, so the cube will have the same number of digits as the prime. Since the prime cannot begin with a 0, its reversal cannot end in 0, so the cube cannot end in 1 (and a cube ends in 1 if and only if its cube root ends in 1). Since cubes are less dense than primes, a reasonably efficient but simple way to search for all terms having at most D digits is to test each positive integer r < 10^(D/3) such that r mod 10 != 1: if the reversal of r^3 - 1 is a prime, then that prime is a term of the sequence. (End)
LINKS
EXAMPLE
421 is prime and reversal(421) + 1 = 124 + 1 = 125 = 5^3.
364751 is in the sequence because it is prime and reversal(364751) + 1 = 157463 + 1 = 157464 = 54^3.
MATHEMATICA
Select[Prime@Range@1000000, IntegerQ@CubeRoot@(FromDigits@Reverse@IntegerDigits@#+1) &]
r = Select[Range@300, Mod[#, 3] != 1 && Mod[#, 10] != 1 &];
s = Sort@Select[FromDigits /@ Reverse /@ IntegerDigits@(r^3 - 1), PrimeQ]
PROG
(Python)
from sympy import isprime
s=[int(str(k**3-1)[::-1]) for k in range(1, 301)if k%10!=1 and k%3!=1]
t=[p for p in s if isprime(p)]
t.sort
print(t)
CROSSREFS
Sequence in context: A099742 A287033 A367867 * A331338 A269555 A027876
KEYWORD
base,nonn,easy
AUTHOR
Zhining Yang, Jul 03 2023
EXTENSIONS
a(18)-a(30) from Jon E. Schoenfield, Jul 03 2023
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 14:59 EDT 2024. Contains 373202 sequences. (Running on oeis4.)