A084699 Composite integers j such that binomial(2*j,j) == 2^j (mod j).
12, 30, 56, 424, 992, 16256, 58288, 119984, 356992, 1194649, 9973504, 12327121, 13141696, 22891184, 67100672, 233850649
Offset: 1
Links
- Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems, sect. III: Binomial coefficients modulo integers, binomod.gp (V. 1.4, 11/2015).
- Gabriel Guedes and Ricardo Machado, Perfect numbers, Wieferich primes and the solutions of binomial(2n, n) congruent to 2^n mod n, Notes Num. Theor. Disc. Math. (NNTDM 2023) Vol. 29, No. 4, 705-712.
Crossrefs
Programs
-
PARI
lista(nn) = {forcomposite(n=1, nn, if (binomod(2*n, n, n) == Mod(2, n)^n, print1(n, ", ")));} \\ Michel Marcus, Dec 06 2013 and Dec 03 2023
Extensions
More terms from David Wasserman, Jan 03 2005
a(11)-a(16) from Max Alekseyev, Aug 05 2011
Comments