A191611 Places n where A085392(n+1)-A085392(n) = 1.
3, 7, 8, 31, 127, 8191, 131071, 524287, 2147483647, 2305843009213693951, 618970019642690137449562111, 162259276829213363391578010288127, 170141183460469231731687303715884105727
Offset: 1
Keywords
Examples
Number 8 is in sequence because the difference between A085392(9)=3 and A085392(8)=2 is 1. 31 is in sequence because the difference between A085392(32)=2 and A085392(31)=1 is 1.
Links
- B. M. M. de Weger, Book review, Bull. Am. Math. Soc. 25 (1991) 145-146.
Crossrefs
Cf. A085392.
Programs
-
PARI
gpd(n) = if (n==1, 1, n/factor(n)[1,1]); gpf(n) = if (n==1, 1, vecmax(factor(n)[,1])); f(n) = gpf(gpd(n)); isok(n) = f(n+1) - f(n) == 1; \\ Michel Marcus, Apr 08 2018
Comments