OFFSET
0,2
COMMENTS
Positive integers m where m-th Catalan number A000108(m) = C(2m,m)/(m+1) is not divisible by 4, i.e. where A048881(m) is 0 or 1.
From Charles L. Hohn, Jul 25 2024: (Start)
Integers >=1 whose binary digit counts (number of 0s and number of 1s) are distinct from those of any smaller number.
Binary analog of A179239 for n>=1.
All integers whose binary expression conforms to regex /^10*1*$/, shown in base 10 in ascending numeric order. (End)
Together with 0 all fixed points of A073137. - Alois P. Heinz, Jan 30 2025
LINKS
Reinhard Zumkeller, Rows n = 0..100 of triangle, flattened
FORMULA
As sequence, a(n) = A048645(n+2) - 1.
G.f.: (1 - x - x^2*y)/((1 - x)*(1 - 2*x)*(1 - x*y)*(1 - 2*x*y)). - Stefano Spezia, Aug 11 2024
EXAMPLE
Triangle starts: In binary:
k = 0 1 2 3 4 5
n
0 1 1
1 2 3 10 11
2 4 5 7 100 101 111
3 8 9 11 15 1000 1001 1011 1111
4 16 17 19 23 31 10000 10001 10011 10111 11111
5 32 33 35 39 47 63 100000 100001 100011 100111 101111 111111
E.g. T(5,3) = 2^5 + 2^3-1 = 32 + 7 = 39 (100111 in binary).
MATHEMATICA
Table[2^n+2^k -1, {n, 0, 10}, {k, 0, n}]//Flatten (* Harvey P. Dale, Mar 27 2016 *)
PROG
(Haskell)
a099627 n k = a099627_tabl !! n !! k
a099627_row n = a099627_tabl !! n
a099627_tabl = iterate (\xs@(x:_) -> (2 * x) : map ((+ 1) . (* 2)) xs) [1]
-- Reinhard Zumkeller, Dec 19 2012
CROSSREFS
KEYWORD
AUTHOR
Henry Bottomley, Oct 25 2004
STATUS
approved