login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A082529 Numbers n such that n divides C(n(n+1),n+1)/n^2. 0
1, 60, 210, 572, 910, 935, 936, 1155, 1197, 1309, 1820, 1848, 2030, 2090, 2142, 2145, 2730, 2871, 2964, 3315, 3400, 3857, 3927, 3978, 4028, 4080, 4185, 4199, 4329, 4550, 4669, 4675, 4845, 4884, 5320, 5423, 5681, 5742, 5950, 5985, 6006, 6032, 6235, 6426 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Equivalently, numbers n such that n divides C(n(n+1),n). - David Wasserman (wasserma(AT)spawar.navy.mil), Sep 13 2004

EXAMPLE

n = 2: C(6, 3)/4 = 5, which is not divisible by 2, so 2 is not in the sequence.

n = 60: C(60*61, 61)/3600 has 130 digits and is divisible by 60.

PROG

(PARI) count = 0; n = 0; while (count < 50, n = n + 1; works = 1; f = factor(n); for (k = 1, matsize(f)[1], p = f[k, 1]; pow = 0; for (i = 1, n, num = n*n + i; while (num%p == 0, pow = pow + 1; num = num/p); num = i; while (num%p == 0, pow = pow - 1; num = num/p)); if (pow < f[k, 2], works = 0)); if (works, print(n); count = count + 1))

CROSSREFS

Sequence in context: A119630 A112827 A181333 * A126248 A068628 A075287

Adjacent sequences:  A082526 A082527 A082528 * A082530 A082531 A082532

KEYWORD

nonn

AUTHOR

Benoit Cloitre (benoit7848c(AT)orange.fr), Apr 30 2003

EXTENSIONS

More terms from David Wasserman (wasserma(AT)spawar.navy.mil), Sep 13 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 18:43 EST 2012. Contains 205939 sequences.