login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A034302 Numbers n such that n remains prime if any digit is deleted (zeros not allowed). 14
23, 37, 53, 73, 113, 131, 137, 173, 179, 197, 311, 317, 431, 617, 719, 1499, 1997, 2239, 2293, 3137, 4919, 6173, 7433, 9677, 19973, 23833, 26833, 47933, 73331, 74177, 91733, 93491, 94397, 111731, 166931, 333911, 355933, 477797, 477977 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

LINKS

T. D. Noe, Table of n, a(n) for n=1..79

StackExchange, Deleting any digit yields a prime

MATHEMATICA

rpnzQ[n_]:=Module[{idn=IntegerDigits[n]}, Count[idn, 0]==0 && And@@ PrimeQ[FromDigits/@Subsets[IntegerDigits[n], {Length[idn]-1}]]]; Select[Prime[Range[40000]], rpnzQ]  (* From Harvey P. Dale, Mar 24 2011 *)

PROG

(Haskell)

import Data.List (inits, tails)

a034302 n = a034302_list !! (n-1)

a034302_list = filter f $ drop 4 a038618_list where

   f x = all (== 1) $ map (a010051 . read) $

             zipWith (++) (inits $ show x) (tail $ tails $ show x)

-- Reinhard Zumkeller, Dec 17 2011

CROSSREFS

Cf. A034303, A034304, A034305, A051362.

Cf. A010051, A038618.

Sequence in context: A063643 A057876 A051362 * A057878 A019549 A129800

Adjacent sequences:  A034299 A034300 A034301 * A034303 A034304 A034305

KEYWORD

base,nonn,nice

AUTHOR

David W. Wilson (davidwwilson(AT)comcast.net)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 10:52 EST 2012. Contains 205763 sequences.