# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a066796 Showing 1-1 of 1 %I A066796 #54 Nov 22 2023 12:15:42 %S A066796 2,8,28,98,350,1274,4706,17576,66196,250952,956384,3660540,14061140, %T A066796 54177740,209295260,810375650,3143981870,12219117170,47564380970, %U A066796 185410909790,723668784230,2827767747950,11061198475550,43308802158650 %N A066796 a(n) = Sum_{i=1..n} binomial(2*i,i). %C A066796 Comments from _Alexander Adamchuk_, Jul 02 2006: (Start) %C A066796 Every a(n) is divisible by prime 2, a(n)/2 = A079309(n). %C A066796 a(n) is divisible by prime 3 only for n=12,30,36,84,90,108,120,... A083096. %C A066796 a(p) is divisible by p^2 for primes p=5,11,17,23,29,41,47,... Primes of form 6n-1. A007528. %C A066796 a(p-1) is divisible by p^2 for primes p=7,13,19,31,37,43,... Primes of form 6n+1. A002476. %C A066796 Every a(n) from a((p-1)/2) to a(p-1) is divisible by prime p for p=7,13,19,31,37,43,... Primes of form 6n+1. A002476. %C A066796 Every a(n) from a((p^2-1)/2) to a(p^2-1) is divisible by prime p>3. %C A066796 a(p^2-1), a(p^2-2) and a(p^2-3) are divisible by p^2 for prime p>3. %C A066796 a(p^2-4) is divisible by p^2 for prime p>5. %C A066796 a(p^2-5) is divisible by p^2 for prime p>7. %C A066796 a(p^2-6) is divisible by p^2 for prime p>7. %C A066796 a(p^2-7) is divisible by p^2 for prime p>11. %C A066796 a(p^2-8) is divisible by p^2 for prime p>13. %C A066796 a(p^3) is divisible by p^2 for prime 2 and prime p=5,11,... Primes of form 6n-1. A007528. %C A066796 a(p^3-1) is divisible by p^2 for prime p=7,13,... Primes of form 6n+1. A002476. %C A066796 a(p^4-1) is divisible by p^2 for prime p>3. (End) %C A066796 Mod[ a(3^k), 9 ] = 1 for integer k>0. Smallest number k such that 2^n divides a(k) is k(n) = {1,2,2,11,11,46,46,707,707,707,...}. Smallest number k such that 3^n divides a(k) is k(n) = (12,822,2466,...}. a(2(p-1)/3) is divisible by p^2 for prime p = {7,13,19,31,37,43,61,...} = A002476 Primes of form 6n+1. Every a(n) from a(p^2-(p+1)/2) to a(p^2-1) is divisible by p^2 for prime p>3. Every a(n) from a((4p+3)(p-1)/6) to a((2p+3)(p-1)/3) is divisible by p^2 for prime p = {7,13,19,31,37,43,61,...} = A002476 Primes of form 6n+1. - _Alexander Adamchuk_, Jan 04 2007 %H A066796 G. C. Greubel, Table of n, a(n) for n = 1..1000 (Terms 1 to 200 computed by Harry J. Smith; terms 201 to 1000 computed by G. C. Greubel, Jan 15 2017) %H A066796 Guo-Shuai Mao, Proof of a conjecture of Adamchuk, arXiv:2003.09810 [math.NT], 2020. %H A066796 Guo-Shuai Mao, On a supercongruence conjecture of Z.-W. Sun, arXiv:2003.14221 [math.NT], 2020. %H A066796 Guo-Shuai Mao, On some supercongruence conjectures of Z.-W. Sun, Nanjing Univ. Info. Sci. Tech. (China, 2023). %H A066796 Guo-Shuai Mao, Proof of some congruences via the hypergeometric identities, Nanjing Univ. Info. Sci. Tech. (China, 2023). %H A066796 Guo-Shuai Mao and Roberto Tauraso, Three pairs of congruences concerning sums of central binomial coefficients, arXiv:2004.09155 [math.NT], 2020. %H A066796 Z.-W. Sun, Fibonacci numbers modulo cubes of primes, arXiv:0911.3060 [math.NT], 2009-2013; Taiwanese J. Math., to appear 2013. - From _N. J. A. Sloane_, Mar 01 2013 %H A066796 Eric Weisstein's World of Mathematics, Central Binomial Coefficient. %H A066796 Eric Weisstein's World of Mathematics, Binomial Sums. %F A066796 a(n) = A006134(n) - 1; generating function: (sqrt(1-4*x)-1)/(sqrt(1-4*x)*(x-1)) - Antonio G. Astudillo (afg_astudillo(AT)hotmail.com), Feb 11 2003, corrected by _Vaclav Kotesovec_, Nov 06 2012 %F A066796 a(n) = Sum_{k=1..n}(2k)!/(k!)^2. - _Alexander Adamchuk_, Jul 02 2006 %F A066796 a(n) = Sum_{k=1..n}binomial(2k,k). - _Alexander Adamchuk_, Jan 04 2007 %F A066796 a(n) ~ 2^(2*n+2)/(3*sqrt(Pi*n)). - _Vaclav Kotesovec_, Nov 06 2012 %t A066796 Table[Sum[(2k)!/(k!)^2,{k,1,n}],{n,1,50}] (* _Alexander Adamchuk_, Jul 02 2006 *) %t A066796 Table[Sum[Binomial[2k,k],{k,1,n}],{n,1,30}] (* _Alexander Adamchuk_, Jan 04 2007 *) %o A066796 (PARI) { a=0; for (n=1, 200, write("b066796.txt", n, " ", a+=binomial(2*n, n)) ) } \\ _Harry J. Smith_, Mar 27 2010 %o A066796 (PARI) a(n) = sum(i=1, n, binomial(2*i,i)); \\ _Michel Marcus_, Jan 04 2016 %Y A066796 Essentially the same as A079309 and A054114. %Y A066796 Equals A006134 - 1. %Y A066796 Cf. A002476, A006134, A007528, A079309, A083096. %K A066796 nonn %O A066796 1,1 %A A066796 _Benoit Cloitre_, Jan 18 2002 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE