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!)
A214629 Primes p such that the sum of the digits plus the product of the digits is a prime. 4
11, 13, 19, 23, 29, 31, 37, 43, 53, 59, 61, 73, 79, 89, 97, 101, 223, 263, 283, 401, 409, 443, 601, 607, 809, 823, 829, 883, 1013, 1019, 1031, 1033, 1039, 1051, 1091, 1093, 1097, 1103, 1109, 1117, 1123, 1129, 1151, 1163, 1171, 1181, 1187, 1193, 1213, 1231, 1259 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
{p in A000040: A061762(p) in A000040}. - R. J. Mathar, Aug 13 2012
EXAMPLE
11 is in the sequence because A061762(11) = 3 is prime.
MAPLE
f:= proc(n) local L;
L:= convert(n, base, 10);
convert(L, `+`)+convert(L, `*`)
end proc:
select(p -> isprime(f(p)), [seq(ithprime(i), i=1..1000)]); # Robert Israel, May 07 2021
MATHEMATICA
f[n_] := Module[{in = IntegerDigits[n]}, Times @@ in + Plus @@ in]; Select[Prime[Range[300]], PrimeQ[f[#]] &]
CROSSREFS
Cf. A061762, A344032. Primes in A185300.
Sequence in context: A101934 A164861 A040150 * A330696 A103803 A188677
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 April 27 21:44 EDT 2024. Contains 372020 sequences. (Running on oeis4.)