OFFSET
1,2
COMMENTS
a(n) is the first occurrence of a difference of 2n between A000959(k+1) and A000959(k). - Robert G. Wilson v, May 12 2006
a(136) > 10^9. - Donovan Johnson, Dec 07 2011
Unknown terms a(166), a(176), a(178), a(182), and a(185) through a(209) are all greater than 10^10. - Kevin P. Thompson, Nov 24 2021
LINKS
Kevin P. Thompson, Table of n, a(n) for n = 1..165 (terms 1..135 from Donovan Johnson)
Kevin P. Thompson, Table of n, a(n) for n = 1..210 with unknown terms
EXAMPLE
MATHEMATICA
lst = Range[1, 10^6, 2]; i = 2; While[ i <= (len = Length@lst) && (k = lst[[i]]) <= len, lst = Drop[lst, {k, len, k}]; i++ ]; f[n_] := Block[{k = 1}, While[t[[k + 1]] - t[[k]] != 2n, k++ ]; t[[k]]]; Array[f, 41] (* Robert G. Wilson v, May 12 2006 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
More terms from Robert G. Wilson v, May 12 2006
STATUS
approved