A111187 a(n) is the index of A110080 where n appears.
1, 5, 2, 10, 1436, 3, 99, 23355, 21, 8, 4, 42, 161289
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
Do[If[DivisorSigma[1, n] == 2n - 2^DivisorSigma[0, n], Print[n]], {n, 925000000}]
2^1299*(4^1300+2^1300-1) is in the sequence because 4^1300+2^1300-1 is prime.
Do[If[PrimeQ[4^m+2^m-1], Print[2^(m-1)*(4^m+2^m-1)]], {m, 52}]
The first 4 terms of the sequence can be plotted on the number line as: 1,2,*,*,5,*,*,*,*,*,11,*,*. Now a(4) is 2. Counting c(4) = 9 down from 2 gets a negative integer. So we instead count up 9 positions, skipping the 5 and 11 as we count, to arrive at 13 (which is at the rightmost * of the number line above).
Comments