OFFSET
1,1
COMMENTS
In other words, numbers n such that 3n is odious.
Numbers n such that valuation(binomial(3n,n),2) is odd. - Benoit Cloitre, Jun 06 2004
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A180963(n)/3. - Amiram Eldar, Aug 06 2023
MATHEMATICA
Select[ Range[ 214 ], OddQ[ Plus@@IntegerDigits[ 3#, 2 ]]& ]
PROG
(PARI) for(n=1, 214, if(valuation(binomial(3*n, n), 2)%2==1, print1(n, ", "))) \\ Benoit Cloitre, Jun 06 2004
(Magma) [ n : n in [0..150] | IsOdd(&+Intseq(3*n, 2))]; // Vincenzo Librandi, Apr 13 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Definition corrected by N. J. A. Sloane, Jan 09 2007
STATUS
approved