OFFSET
1,2
COMMENTS
A binary index of n is any position of a 1 in its reversed binary expansion. The binary indices of n are row n of A048793.
LINKS
Chris R. Rehmann, Table of n, a(n) for n = 1..10000
Chris R. Rehmann, Semilog plot
EXAMPLE
The binary indices of 600 are (4,5,7,10), with first differences (1,2,3), so 600 is in the sequence.
MATHEMATICA
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
Select[Range[100], Less@@Differences[bpe[#]]&]
PROG
(MATLAB) isA390305 = @(n) all(diff(diff(find(fliplr(dec2bin(n)-'0'))))>0); % Chris R. Rehmann, Dec 08 2025
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Gus Wiseman, Nov 20 2025
STATUS
approved
