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!)
A099907 a(n) = C(2n-1,n-1) mod n^3. 6
0, 3, 10, 35, 1, 30, 1, 291, 253, 378, 1, 782, 1, 2404, 1260, 291, 1, 3378, 1, 410, 7899, 3996, 1, 6030, 126, 10988, 11188, 5180, 1, 19712, 1, 8483, 5334, 34394, 1841, 21410, 1, 20580, 39556, 38810, 1, 64260, 1, 35972, 66060, 36504, 1, 61326, 1716, 123628 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For p prime > 3, Joseph Wolstenholme showed in 1862 that a(p)=1. - corrected by Jonathan Sondow, Jan 24 2016
LINKS
EXAMPLE
a(11) = 352716 mod 1331 = 1.
MAPLE
seq(binomial(2*n-1, n-1) mod n^3, n=1..100); # Robert Israel, Jan 24 2016
MATHEMATICA
Table[Mod[Binomial[2 n - 1, n - 1], n^3], {n, 1, 50}] (* Vincenzo Librandi, Jan 24 2016 *)
PROG
(PARI) a(n) = binomial(2*n-1, n-1) % n^3; \\ Michel Marcus, Jan 24 2016
(Magma) [Binomial(2*n-1, n-1) mod n^3: n in [1..50]]; // Vincenzo Librandi, Jan 24 2016
CROSSREFS
Sequence in context: A149033 A149034 A149035 * A128735 A330050 A159309
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)