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!)
A099906 a(n) = binomial(2n-1,n-1) mod n^2. 7
0, 3, 1, 3, 1, 30, 1, 35, 10, 78, 1, 62, 1, 52, 135, 35, 1, 138, 1, 10, 402, 124, 1, 270, 126, 172, 253, 476, 1, 812, 1, 291, 978, 870, 616, 674, 1, 364, 10, 410, 1, 756, 1, 1124, 1260, 532, 1, 1422, 1716, 1128, 2322, 1556, 1, 1920, 1941, 2172, 1815, 844, 1, 3528, 1, 964 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For odd primes p, Charles Babbage showed in 1819 that a(p) = 1.
LINKS
EXAMPLE
a(11) = binomial(21,10) mod 11^2 = 352716 mod 121 = 1.
MATHEMATICA
Table[ Mod[ Binomial[2n - 1, n - 1], n^2], {n, 60}] (* Robert G. Wilson v, Dec 14 2004 *)
PROG
(Magma) [Binomial(2*n-1, n-1) mod(n^2): n in [1..65]]; // Vincenzo Librandi, Jul 29 2015
(PARI) A099906(n)=binomial(2*n-1, n-1)%n^2 \\ M. F. Hasler, Jul 30 2015
(Python)
from __future__ import division
A099906_list, b = [], 1
for n in range(1, 10001):
A099906_list.append(b % n**2)
b = b*2*(2*n+1)//(n+1) # Chai Wah Wu, Jan 26 2016
CROSSREFS
Sequence in context: A278601 A281038 A263677 * A262026 A270390 A341472
KEYWORD
nonn
AUTHOR
Henry Bottomley, Oct 29 2004
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)