A055233 Composite numbers equal to the sum of the primes from their smallest prime factor to their largest prime factor.
10, 39, 155, 371, 2935561623745, 454539357304421
Offset: 1
Examples
10 = 2*5 = 2 + 3 + 5; 39 = 3*13 = 3 + 5 + 7 + 11 + 13; 371 = 7*53 = 7 + 11 + 13 + ... + 53.
Links
- Erich Friedman, What's Special About This Number?
- G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 39
- Miroslav Kureš, Straddled numbers: numbers equal to the sum of powers of consecutive primes from the least prime factor to the largest prime factor, Notes on Number Theory and Discrete Mathematics (2019) Vol. 25, No. 2, 8-15.
- Robert Munafo, Notable Properties of Specific Numbers
- Carlos Rivera, Puzzle 98. Curio 39, The Prime Puzzles and Problems Connection.
Crossrefs
Programs
-
Mathematica
Select[Range[2, 10^3], And[CompositeQ@ #1, #1 == #2] & @@ {#, Total@ Prime[Range @@ PrimePi@ {#[[1, 1]], #[[-1, 1]]} &@ FactorInteger[#]]} &] (* Michael De Vlieger, Sep 04 2019 *)
Extensions
a(5) found by Jud McCranie, Jul 03 2000
454539357304421 confirmed to be the 6th term by Donovan Johnson, Aug 23 2010
Example: removed last (see A055514). - Manuel Valdivia, Nov 19 2011
Comments