A225890 Composite numbers n such that A179382((n+1)/2)=(n-1)/(2^c) for some c > 0.
92673, 143713, 3579553, 4110529, 28688897, 127017857, 141127681, 157648097, 162101441
Offset: 1
Examples
143713=137*1049: A179382((143713+1)/2)=4491=(143713-1)/(2^5)
Crossrefs
Cf. A179382.
Programs
-
PARI
oddres(n)=n>>valuation(n, 2) cyc(d)=my(k=1, t=1); while((t=oddres(t+d))>1, k++); k p=5;forprime(q=7,1e7,forstep(n=p+2, q-2, 2, my(t=(n-1)/cyc(n), c=valuation(t,2)); if(t>>c==1 && c>0, print1(n", ")));p=q) \\ Charles R Greathouse IV, May 20 2013
Extensions
Missing a(3) from Giovanni Resta, May 20 2013
a(6)-a(9) from Giovanni Resta, May 21 2013
Comments