cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A059289 a(n) = 1 + (binomial(2n,n) mod n).

This page as a plain text file.
%I A059289 #11 Jan 05 2017 02:55:28
%S A059289 1,1,3,3,3,1,3,7,3,7,3,5,3,7,1,7,3,7,3,1,7,7,3,13,3,7,21,1,3,5,3,7,10,
%T A059289 7,8,17,3,7,21,21,3,1,3,5,1,7,3,13,3,7,4,45,3,7,33,33,40,7,3,37,3,7,
%U A059289 13,7,6,1,3,37,67,41,3,37,3,7,46,33,1,67,3,21,21,7,3
%N A059289 a(n) = 1 + (binomial(2n,n) mod n).
%H A059289 Harry J. Smith, <a href="/A059289/b059289.txt">Table of n, a(n) for n = 1..5000</a>
%p A059289 [seq((binomial(2*n,n) mod (n))+1,n=1..50)];
%t A059289 1 + Table[Mod[Binomial[2*n, n], n], {n,1,25}] (* _G. C. Greubel_, Jan 04 2017 *)
%o A059289 (PARI) { for (n = 1, 5000, write("b059289.txt", n, " ", 1 + binomial(2*n, n) % n); ) } \\ _Harry J. Smith_, Jun 25 2009
%Y A059289 Cf. A053214, A059288.
%K A059289 nonn
%O A059289 1,3
%A A059289 _N. J. A. Sloane_, Jan 25 2001