A165561 Primes that are the sum of an integer n and its arithmetic derivative.
3, 11, 17, 23, 31, 41, 47, 53, 59, 61, 71, 79, 83, 89, 107, 113, 127, 131, 149, 151, 167, 179, 191, 193, 197, 227, 239, 251, 263, 269, 271, 293, 311, 313, 347, 359, 383, 401, 419, 431, 439, 443, 449, 457, 479, 491, 503, 521, 523, 587, 593, 599, 607, 617, 631
Offset: 1
Examples
71 is in the list because: n=46 -> n'=25 -> n+n'=71; n=51 -> n'=20 -> n+n'=71; n=55 -> n'=16 -> n+n'=71.
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
Programs
-
Maple
isA165561 := proc(n) if isprime(n) then for i from 1 to n do if n = A129283(i) then return true ; end if; end do: false ; else false; end if; end proc: for n from 2 to 1000 do if isA165561(n) then printf("%d,",n) ; end if; end do: # R. J. Mathar, Feb 04 2022
-
Mathematica
(*First run the program given in A165562*) SetAttributes[a, Listable]; A165561 = Union[A165562 + a[A165562]]
Formula
Extensions
Terms verified by Alonso del Arte, Oct 30 2009
Comments