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!)
A107737 Numbers n such that, in prime decomposition of n, sum of all prime factors and their orders is prime. 3
2, 6, 8, 9, 14, 25, 26, 30, 32, 38, 40, 45, 56, 63, 66, 70, 74, 75, 81, 86, 88, 96, 99, 100, 104, 117, 121, 130, 134, 136, 138, 144, 147, 153, 154, 158, 160, 168, 174, 184, 190, 194, 196, 206, 207, 216, 218, 238, 248, 250, 252, 254, 266, 275, 279, 280, 286, 289 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding primes in A107738. Cf. A008474 If n = Product (p_j^k_j) then a(n) = Sum (p_j + k_j).
LINKS
Eric Weisstein's World of Mathematics, Prime Factorization
EXAMPLE
n = 104 OK because 104 = 2^3 * 13^1 => (2+3)+(13+1) = 19 is prime.
MATHEMATICA
ta=Table[Plus @@ Flatten[FactorInteger[n]], {n, 300}]; bb={}; Do[If[PrimeQ[t=ta[[i]]], bb=Append[bb, {i, t}]], {i, 300}]; tr=Transpose[bb]; A107738=tr[[2]]; A107737=tr[[1]]
Select[Range[2, 300], PrimeQ[Total[Flatten[FactorInteger[#]]]]&] (* Harvey P. Dale, Feb 05 2017 *)
CROSSREFS
Sequence in context: A047278 A242204 A172209 * A045138 A067704 A284889
KEYWORD
nonn
AUTHOR
Zak Seidov, May 23 2005
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 September 9 20:10 EDT 2024. Contains 375765 sequences. (Running on oeis4.)