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”).

A205388
Least s(k) such that n divides s(k)-s(j) for some j<k, where s(j)=(1/2)C(2j,j).
3
3, 3, 10, 35, 35, 462, 10, 35, 10, 1716, 1716, 462, 126, 462, 1716, 35, 35, 24310, 1716, 6435, 462, 1716, 92378, 462, 35, 24310, 462, 462, 126, 1716, 352716, 35, 1716, 35, 1716, 24310, 24310, 1716, 6435, 6435, 126, 462, 77558760, 24310, 24310
OFFSET
1,1
COMMENTS
For a guide to related sequences, see A204892.
LINKS
MAPLE
N:= 100: # for a(1)..a(N)
S:=proc(j) option remember; binomial(2*j, j)/2 end proc:
A:= Vector(N): T:= {$1..N}:
for k from 2 while T <> {} do
for j from 1 to k-1 while T <>{} do
w:= S(k)-S(j);
d:= select(t -> w mod t = 0, T);
A[convert(d, list)]:= S(k);
T:= T minus d;
od;
od;
convert(A, list); # Robert Israel, Aug 28 2019
MATHEMATICA
(See the program at A205386.)
CROSSREFS
Sequence in context: A019168 A107299 A298899 * A121446 A302196 A340598
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 27 2012
STATUS
approved