OFFSET
1,2
COMMENTS
Numbers such that A099551(n) = 1.
Numbers of the form 2^m * (10n + 1). - Charles R Greathouse IV, May 14 2014
FORMULA
a(n) = 5n + O(log n). - Charles R Greathouse IV, May 14 2014
EXAMPLE
176 is in the sequence because it belongs to 11, 22, 44, 88, 176, with first term 11.
96, which belongs to 3, 6, 12, 24, 48, 96 with first term 3, is not a term.
PROG
(PARI) isok(n) = ((n/2^valuation(n, 2)) % 10) == 1; \\ Michel Marcus, May 14 2014
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
J. Lowell, May 10 2014
EXTENSIONS
More terms from Michel Marcus, May 14 2014
STATUS
approved