A329914 Numbers k such that there exist numbers M_k which, when 1 is placed at both ends of M_k, the number M_k is multiplied by k.
21, 23, 27, 29, 33, 39, 57, 59, 69, 71, 83, 87, 99, 101, 107
Offset: 1
Examples
23 * 77 = 1[77]1, so k = 23 is a term and 13 * 77 = 1001; remark: number M = 77 has 2 digits and 10^3+1 has 2 zeros also. 29 * 52631579 = 1[52631579]1, so 29 is a term et 19 * 52631579 = 10^9 + 1 = 1000000001.
References
- D. Wells, 112359550561797732809 entry, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1997, p. 196.
Links
- Bernard Schott, Array with values of (q,k,M)
Programs
-
Mathematica
Select[Range[21, 110], GCD[10, # - 10] == 1 && MemberQ[Mod[10^Range[#] + 1, # - 10], 0] &] (* Giovanni Resta, Nov 26 2019 *)
Comments