login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A081384
Numbers k such that binomial(prime(k), k) is divisible by k^2.
1
1, 60, 624, 663, 1309, 1638, 1950, 2145, 2394, 2470, 2508, 3640, 4186, 5016, 5187, 5928, 6138, 6417, 6479, 7395, 7800, 7920, 7956, 8372, 8415, 8580, 8645, 9350, 10340, 10582, 11220, 11466, 11484, 12540, 12825, 12920, 13325, 13680, 13833, 14620, 14911, 15708
OFFSET
1,2
LINKS
MATHEMATICA
Do[s=Binomial[Prime[n], n]; If[IntegerQ[s/n^2], Print[n]], {n, 1, 10000}]
Select[Range[10000], Divisible[Binomial[Prime[#], #], #^2]&] (* Harvey P. Dale, Mar 10 2013 *)
PROG
(PARI) is(k) = !(binomial(prime(k), k) % k^2); \\ Amiram Eldar, Oct 04 2024
CROSSREFS
Cf. A060604.
Sequence in context: A101384 A229750 A223338 * A283786 A099344 A324068
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 26 2003
EXTENSIONS
More terms from Harvey P. Dale, Mar 10 2013
STATUS
approved