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.

A119861 Number of distinct prime factors of the odd Catalan numbers A038003(n).

This page as a plain text file.
%I A119861 #16 Feb 16 2025 08:33:01
%S A119861 0,1,3,6,11,20,36,64,117,209,381,699,1291,2387,4445,8317,15645,29494,
%T A119861 55855,106021,201778,384941,735909,1409683,2705277,5200202
%N A119861 Number of distinct prime factors of the odd Catalan numbers A038003(n).
%C A119861 A038003[n] = A000108[2^n-1] = binomial(2^(n+1)-2, 2^n-1)/(2^n). a(1) = 0 because A038003[1] = 1. a(2) = 1 because A038003[2] = 5. a(3) = 3 because A038003[3] = 429 = 3*11*13. a(4) = 6 because A038003[4] = 9694845 = 3^2*5*17*19*23*29.
%C A119861 Odd Catalan numbers are listed in A038003[n] = A000108[2^n-1] = binomial(2^(n+1)-2, 2^n-1)/(2^n).
%H A119861 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/CatalanNumber.html">Catalan Number</a>.
%F A119861 a(n) = Length[ FactorInteger[ Binomial[ 2^(n+1)-2, 2^n-1] / (2^n) ]].
%p A119861 with(numtheory): c:=proc(n) options operator, arrow: binomial(2*n, n)/(n+1) end proc: seq(nops(factorset(c(2^n-1))),n=1..15); # _Emeric Deutsch_, Oct 24 2007
%t A119861 Table[Length[FactorInteger[Binomial[2^(n+1)-2, 2^n-1]/(2^n)]],{n,1,15}]
%o A119861 (Python)
%o A119861 from sympy import factorint
%o A119861 A119861_list, c, s = [0], {}, 3
%o A119861 for n in range(2,2**19):
%o A119861     for p,e in factorint(4*n-2).items():
%o A119861         if p in c:
%o A119861             c[p] += e
%o A119861         else:
%o A119861             c[p] = e
%o A119861     for p,e in factorint(n+1).items():
%o A119861         if c[p] == e:
%o A119861             del c[p]
%o A119861         else:
%o A119861             c[p] -= e
%o A119861     if n == s:
%o A119861         A119861_list.append(len(c))
%o A119861         s = 2*s+1 # _Chai Wah Wu_, Feb 12 2015
%Y A119861 Cf. A038003, A000108, A120274, A120275.
%Y A119861 Cf. A000108 = Catalan Number. Cf. A038003 = Odd Catalan numbers. Cf. A120274, A120275, A119908, A094389.
%K A119861 nonn
%O A119861 1,3
%A A119861 _Alexander Adamchuk_, Jul 31 2006, Oct 11 2007
%E A119861 a(16)-a(18) from _Robert G. Wilson v_, May 15 2007
%E A119861 a(19)-a(26) from _Chai Wah Wu_, Feb 12 2015