OFFSET
1,2
COMMENTS
Integer solutions to {A095375(x)/x is an integer}.
a(18) > pi(10^12). - Donovan Johnson, May 03 2010
a(20) > 6.2*10^11. The first 19 ratios between the total number of 1's and k are 1, 2, 3, 4, 4, 5, 8, 14, 14, 14, 14, 14, 14, 14, 14, 17, 18, 22. - Giovanni Resta, May 08 2017
FORMULA
Integer solutions to {A095375(x)/x is an integer}.
EXAMPLE
n=14: the relevant list = {2,3,5...,41,43} = {10,11,101,...,11001,11011} contains 42 digits "1", and 42/14 = 3, so 14 is in the sequence.
MATHEMATICA
s=0; Reap[Do[s += DigitCount[Prime@n, 2][[1]]; If[Mod[s, n] == 0, Sow@ n], {n, 10^4}]][[2, 1]] (* Giovanni Resta, May 08 2017 *)
CROSSREFS
KEYWORD
nonn,base,more,changed
AUTHOR
Labos Elemer, Jun 07 2004
EXTENSIONS
a(16)-a(17) from Donovan Johnson, May 03 2010
a(18) from Giovanni Resta, May 08 2017
STATUS
approved