login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A367782 Numbers k such that binomial(2*k,k) mod k is odd. 1
33, 35, 51, 57, 65, 75, 85, 95, 105, 115, 117, 119, 129, 135, 147, 171, 175, 183, 185, 201, 219, 221, 225, 235, 237, 245, 247, 253, 255, 261, 279, 285, 291, 295, 301, 309, 319, 329, 333, 335, 341, 357, 365, 369, 377, 381, 385, 395, 399, 403, 415, 417, 423, 427, 453, 455, 471, 473, 481, 485, 489, 507 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is odd since binomial(2*k,k) is even for k>0. - Chai Wah Wu, Nov 30 2023
LINKS
MAPLE
isa := n -> irem(irem(binomial(2*n, n), n), 2) = 1:
select(isa, [seq(1..507, 2)]); # Peter Luschny, Nov 30 2023
MATHEMATICA
A367782Q[n_]:=OddQ[Mod[Binomial[2n, n], n]];
Select[Range[1000], A367782Q] (* Paolo Xausa, Dec 01 2023 *)
PROG
(PARI) for(n=1, 510, if(bitand(binomial(2*n, n)%n, 1), print1(n, ", ")));
(Python)
from math import comb
from itertools import count, islice
def A367782_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda n: (comb(n<<1, n)%n)&1, count(max(startvalue+(startvalue&1^1), 1), 2))
A367782_list = list(islice(A367782_gen(), 30)) # Chai Wah Wu, Nov 30 2023
CROSSREFS
Cf. A059288 (binomial(2*n,n) mod n), A014847 (k such that binomial(2*k,k) mod k is zero).
Sequence in context: A041543 A144425 A180329 * A356765 A020260 A345500
KEYWORD
nonn
AUTHOR
Joerg Arndt, Nov 30 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 29 22:36 EDT 2024. Contains 374734 sequences. (Running on oeis4.)