OFFSET
1,1
COMMENTS
We define a sequence b(n) = 5, 10, 13, 17, 20, 25, 26, 29, 34, 37, 40, 41, 50, 52, 53, 58, 61, 65, 68, 73, ... to consist of those numbers where all odd prime factors are primes contained in A002144, and which have at least one prime factor in this class.
b(n) differs from A009003 which also contains numbers like 30=2*3*5 or 39=3*13, 3 not being in A002144.
b(n) essentially contains elements of A004613 multiplied by powers of 2.
a(n) is the sum of the distinct odd prime factors of b(n), where "distinct" means that the multiplicity (exponent) in the prime factorization of b(n) is ignored.
Sum of distinct Pythagorean prime divisors of integers whose only odd prime divisors are Pythagorean primes A002144.
Analogous sequence for primes of form 4k+3 is A164928.
Analogous sequence for primes of form 6k+1 is A164929.
Analogous sequence for primes of form 6k+5 is A164930.
EXAMPLE
a(18) = 18 because b(18) = 65 = 5*13, and 5+13 = 18.
The smallest number, all of whose prime factors are of form 4n+1, whose sum of distinct prime factors is prime: 1885 = 5 * 13 * 29; and 5 + 13 + 29 = 47.
MAPLE
isb := proc(n) fs := numtheory[factorset](n) minus {2} ; if fs = {} then RETURN(false); else for f in fs do if op(1, f) mod 4 <> 1 then RETURN(false) ; fi; od: RETURN(true) ; fi; end:
b := proc(n) if n = 1 then 5; else for a from procname(n-1)+1 do if isb(a) then RETURN(a) ; fi; od: fi; end:
A164927 := proc(n) local f; numtheory[factorset]( b(n)) minus {2} ; add(f, f=%) ; end: seq(A164927(n), n=1..120) ; # R. J. Mathar, Sep 09 2009
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Aug 31 2009
EXTENSIONS
Edited, definition clarified by R. J. Mathar, Sep 08 2009
STATUS
approved
