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!)
A048519 Prime plus its digit sum equals a prime. 29

%I #49 Jan 01 2024 08:31:19

%S 11,13,19,37,53,59,71,73,97,101,103,127,149,163,167,181,233,257,271,

%T 277,293,307,367,383,389,419,431,433,479,499,509,547,563,587,617,631,

%U 701,727,743,787,811,839,857,859,947,1009,1049,1061,1087,1153,1171

%N Prime plus its digit sum equals a prime.

%C For any prime p, p +- digitsum(p, base b) can't be prime unless the base b is even, since in an odd base, an odd number always has an odd digit sum (powers of b are congruent to b (mod 2)), so p +- digitsum(p, base b) is even for odd b. This sequence is for b = 10 (where "-" is also excluded, see comment in A243442), see A243441 for b = 2. - _M. F. Hasler_, Nov 06 2018

%C See subsequence A048523 for primes which only once give another prime under iteration of A062028, and A048524 .. A048527, A320878 .. A320880 for primes starting longer chains. See A090009 for their initial terms, starting the earliest chain of given length. - _M. F. Hasler_, Nov 09 2018

%H Harvey P. Dale, <a href="/A048519/b048519.txt">Table of n, a(n) for n = 1..1000</a>

%F Primes in A047791, i.e., intersection of A047791 and A000040. - _M. F. Hasler_, Nov 08 2018

%e a(9) = prime 97 because 97 + sum-of-digits(97) = 97 + 16 = 113 also a prime.

%p select(n -> isprime(n) and isprime(n + convert(convert(n,base,10),`+`)), [$1..10^4]); # _Robert Israel_, Aug 10 2014

%t Select[Prime[Range[500]],PrimeQ[#+Total[IntegerDigits[#]]]&] (* _Harvey P. Dale_, Oct 03 2011 *)

%o (PARI) select( is(p)=isprime(p+sumdigits(p))&&isprime(p), primes([0,2000])) \\ _M. F. Hasler_, Aug 08 2014, edited Nov 09 2018

%o (Haskell)

%o a048519 n = a048519_list !! (n-1)

%o a048519_list = map a000040 $ filter ((== 1) . a010051' . a065073) [1..]

%o -- _Reinhard Zumkeller_, Sep 27 2014

%o (Magma) [p: p in PrimesUpTo(1200) | IsPrime(q) where q is p+&+Intseq(p)]; // _Vincenzo Librandi_, Jan 30 2018

%Y Cf. A007953 (digit sum), A062028 (n + digit sum of n), A047791 (A062028(n) is prime), A048520.

%Y Cf. A006378, A107740.

%Y Cf. A000040, A010051, A065073.

%Y Cf. A048523 .. A048527, A320878, A320879, A320880, A090009.

%K nonn,base

%O 1,1

%A _Patrick De Geest_, May 15 1999

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 23 02:14 EDT 2024. Contains 371906 sequences. (Running on oeis4.)