login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A254783
Numbers n such that A033493(n)/n is an integer.
0
1, 57, 847, 1694, 3039, 3388, 3479, 6078, 6776, 6958, 13916, 27832, 55664, 111328, 236107, 246721, 311257, 493442, 622514, 986884, 1245028, 1328233, 1973768, 2052521, 2490056, 2656466, 3947536, 4105042, 4980112, 8210084
OFFSET
1,2
COMMENTS
If A033493(n)/n = M is even, then 2*n is a member of the sequence and A033493(2*n)/(2*n) = M/2 + 1.
a(31) > 10^7. - Derek Orr, Mar 12 2015
Sum of reciprocals seems to converge quickly to 1.0208... - Derek Orr, Mar 12 2015
MATHEMATICA
a033493[n_] := Block[{f}, f[1] = 1; f[x_Integer?OddQ] := 3 x + 1; f[x_Integer?EvenQ] := x/2; -1 + Plus @@ FixedPointList[f, n]]; Select[Range[10^5], IntegerQ[a033493[#]/#] &] (* Michael De Vlieger, Feb 09 2015, after Alonso del Arte at A033493 *)
PROG
(PARI) Tsum(n)=s=n; while(n!=1, if(n==Mod(0, 2), n=n/2; s+=n); if(n==Mod(1, 2)&&n!=1, n=3*n+1; s+=n)); s
for(n=1, 10^6, if(type(Tsum(n)/n)=="t_INT", print1(n, ", ")))
CROSSREFS
Cf. A033493.
Sequence in context: A098995 A210156 A210149 * A233370 A008390 A231311
KEYWORD
nonn,more,hard
AUTHOR
Derek Orr, Feb 07 2015
STATUS
approved