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!)
A145387 Natural numbers n such that n-1 and n+1 are prime, also (sum of digits) + 1 and (sum of digits) - 1 is prime. 1
4, 6, 42, 60, 138, 150, 192, 198, 228, 240, 282, 312, 420, 462, 570, 600, 642, 660, 822, 828, 882, 1032, 1050, 1092, 1230, 1278, 1290, 1302, 1320, 1452, 1722, 1872, 2028, 2082, 2088, 2112, 2130, 2268, 2310, 2550, 2592, 2712, 2730, 2790, 2802, 2970, 3120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
isA014574 := proc(n) RETURN( isprime(n-1) and isprime(n+1)) ; end: A007953 := proc(n) add(i, i=convert(n, base, 10) ); end: isA145387 := proc(n) RETURN(isA014574(n) and isprime( A007953(n)+1) and isprime( A007953(n)-1) ) ; end: for n from 1 to 3400 do if isA145387(n) then printf("%d, ", n) ; fi; od: # R. J. Mathar, Nov 18 2008
MATHEMATICA
Select[Range[3200], AllTrue[Flatten[{#+{1, -1}, Total[IntegerDigits[#]]+{1, -1}}], PrimeQ]&] (* Harvey P. Dale, Dec 29 2021 *)
CROSSREFS
Cf. A014574.
Sequence in context: A023644 A319672 A355233 * A034923 A013022 A012908
KEYWORD
base,easy,nonn
AUTHOR
Giovanni Teofilatto, Oct 10 2008
EXTENSIONS
198 inserted by R. J. Mathar, Nov 18 2008
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)