OFFSET
1,2
COMMENTS
The corresponding integers are 1, 3, 5, 7, 9, 21, 11, 13, 15, 17, 19, 21, 34, 23, 36, 25, 27, 29, 31, 33, 47, 35, 37, 39, 41, 43, 45, 60, 47, 49, 81, 51, 53, 55, 57, 73, 59, 61, 63, ... Conjecturally, it seems that all odd numbers are present, and the even numbers are rare: 34, 36, 60, ...
We observe that the non-powers of 2 of the sequence: 26, 1664, 3392, 106496, 6815744, 27918336, 436207616, ... are of the form q*2^k with q in the set {13, 53, 213, ...}.
LINKS
EXAMPLE
26 is in the sequence because the Collatz trajectory is 26 -> 13 -> 40 -> 20 -> 10 -> 5 -> 16 -> 8 -> 4 -> 2 -> 1, and 26/phi(26) + 13/phi(13) + 40/phi(40) + 20/phi(20) + 10/phi(10) + 5/phi(5) + 16/phi(16) + 8/phi(8) + 4/phi(4) + 2/phi(2) + 1/phi(1) = 26/12 + 13/12 + 40/16 + 20/8 + 10/4 + 5/4 + 16/8 + 8/4 + 4/2 + 2/1 + 1/1 = 21 is an integer.
MAPLE
with(numtheory):nn:=10^6:
for n from 1 to 100000 do:
T:=array(1..1000, [0$1000]):
it:=0:m:=n:k:=0:
for i from 1 to nn while(m<>1) do:
if irem(m, 2)=0
then
k:=k+1:T[k]:=m:m:=m/2:
else
k:=k+1:T[k]:=m:m:=3*m+1:
fi:
od:
k:=k+1:T[k]:=1:
s:=sum(āT[i]/phi(T[i])ā, āiā=1..k):
if s=floor(s)
then
printf (`%d %d \n`, n, s):
else fi:
od:
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 18 2018
STATUS
approved