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!)
A226531 Cubes that become prime when their least-significant (rightmost) digit is removed. 2
27, 3375, 4096, 4913, 35937, 97336, 110592, 148877, 421875, 681472, 1191016, 1442897, 1560896, 2628072, 3241792, 3581577, 3869893, 4741632, 5359375, 8998912, 10218313, 12649337, 16777216, 16974593, 21253933, 26730899, 31255875, 32157432, 43986977, 45882712 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
EXAMPLE
4096 = 16^3, and becomes the prime number 409 when truncated.
MATHEMATICA
Select[Range[1000]^3, PrimeQ[Floor[#/10]]&] (* Harvey P. Dale, May 28 2021 *)
PROG
(R) library(gmp)trimR=function(x) { x=as.character(x); ifelse(nchar(x)<2, 0, substr(x, 1, nchar(x)-1)) }
y=as.bigz(rep(0, 10000)); len=0; n=as.bigz(-1)
while(len<10000) if(isprime(trimR((n=n+1)^3))) y[(len=len+1)]=n^3
CROSSREFS
Cf. A226090.
Sequence in context: A132645 A223551 A178631 * A017559 A069076 A128507
KEYWORD
nonn,base
AUTHOR
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 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)