[go: up one dir, main page]

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”).

A064507
Numbers of more than one digit that yield primes when cast in their own base.
2
21, 27, 29, 61, 67, 111, 151, 191, 201, 203, 223, 241, 313, 319, 331, 351, 373, 397, 403, 409, 461, 463, 481, 553, 559, 571, 667, 711, 791, 807, 841, 869, 889, 931, 979, 1071, 1079, 1107, 1129, 1189, 1257, 1273, 1277, 1297, 1431, 1437, 1583, 1611, 1639
OFFSET
1,1
COMMENTS
All terms are coprime to 10. - Robert Israel, Dec 04 2016
LINKS
EXAMPLE
E.g. 21 in base 21 is 2*21+1=43, 111 is 1*111*111+1*111+1=12433, etc.
MAPLE
filter:= proc(n) local L, i;
L:= convert(n, base, 10);
isprime(add(L[i]*n^(i-1), i=1..nops(L)))
end proc:
select(filter, [seq(i, i=11..2000, 2)]); # Robert Israel, Dec 04 2016
PROG
(PARI) isok(n) = (n>=10) && isprime(fromdigits(digits(n), n)); \\ Michel Marcus, Dec 04 2016
CROSSREFS
Cf. A064508. Contained in A054684.
Sequence in context: A299594 A318544 A173836 * A249729 A280107 A264102
KEYWORD
nonn,base
AUTHOR
Jon Perry, Oct 06 2001
EXTENSIONS
Offset corrected by Arkadiusz Wesolowski, Oct 19 2013
Name corrected by Robert Israel, Dec 04 2016
STATUS
approved