login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A157173
Primes with sum of smallest digit and final digit is a prime.
1
11, 23, 29, 31, 41, 47, 61, 67, 71, 89, 103, 107, 131, 151, 181, 191, 211, 223, 229, 233, 239, 241, 251, 263, 269, 271, 281, 283, 293, 307, 311, 331, 421, 431, 449, 457, 461, 467, 479, 487, 491, 499, 503, 521, 523, 541, 547, 571, 607, 631, 641, 647, 661, 677
OFFSET
1,1
FORMULA
a(n) ~ (4/3) n log n since almost all primes not ending in 1 are in this sequence, and only o(x^0.96) primes ending in 1 are in this sequence. - Charles R Greathouse IV, Jan 02 2013
EXAMPLE
11(1+1=2=prime), 23(2+3=5=prime), 29(2+9=11=prime), 31(1+1=2=prime), etc.
MATHEMATICA
sldpQ[n_]:=Module[{idn=IntegerDigits[n]}, PrimeQ[Min[idn]+Last[idn]]]; Select[Prime[Range[150]], sldpQ] (* Harvey P. Dale, May 09 2012 *)
PROG
(PARI) is(n)=my(d=digits(n)); isprime(vecmin(d)+d[#d]) && isprime(n) \\ Charles R Greathouse IV, Jan 02 2013
CROSSREFS
Cf. A000040.
Sequence in context: A205714 A061752 A122259 * A257318 A090423 A232085
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Second 151 replaced by 251, 643 removed by R. J. Mathar, Feb 26 2009
STATUS
approved