A276513 a(n) = the smallest number k>1 such that Sum_{p|k} 0.p = n where p runs through the prime divisors of k.
21, 16102, 281785, 275867515, 9178864590, 8533159052845, 9404411107962990
Offset: 1
Examples
Number 16102 is the smallest number k with Sum_{p|k} 0.p = 2; set of prime divisors of 16102: {2, 83, 97}; Sum_{p|16102} 0.p = 0.2 + 0.83 + 0.97 = 2.
Programs
-
Magma
A276513:=func
; [A276513(n): n in[1..3]] -
Mathematica
Table[k = 1; While[f = FactorInteger[k][[All, 1]]; Total[f*10^-IntegerLength[f]] != n, k++]; k, {n, 1, 4}] (* Robert Price, Sep 20 2019 *)
Extensions
a(4) from Chai Wah Wu, Sep 16 2016
a(5)-a(7) from Giovanni Resta, Aug 19 2019
Comments