A349193 1-Sondow numbers: numbers j such that p divides j/p + 1 for every prime divisor p of j.
1, 2, 6, 42, 1806, 47058, 2214502422, 52495396602, 8490421583559688410706771261086
Offset: 1
Keywords
Links
- Github, Jonathan Sondow (1943 - 2020)
- J. M. Grau, A. M. Oller-Marcén, and D. Sadornil, On µ-Sondow Numbers, arXiv:2111.14211 [math.NT], 2021.
- J. M. Grau, A. M. Oller-Marcen and J. Sondow, On the congruence 1^n + 2^n + ... + n^n = d (mod n), where d divides n, arXiv:1309.7941 [math.NT], 2013.
Crossrefs
Programs
-
Mathematica
Sondow[mu_][n_]:= Sondow[mu][n]= Module[{fa=FactorInteger[n]},IntegerQ[mu/n+Sum[1/fa[[i,1]],{i,Length[fa]}]]]; Select[Range[100000],Sondow[1][#]&]
Comments