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.
%I A178034 #15 Dec 16 2023 20:08:47 %S A178034 1,1,1,7,1,11,1,253,17,19,1,595,1,27,29,39711,1,1378,1,1711,41,43,1, %T A178034 138415,49,51,3160,3403,1,3916,1,25637001,65,67,69,477191,1,75,77, %U A178034 657359,1,7750,1,8515,8911,91,1,132563501,97,11026,101,11935,1,1633355 %N A178034 a(n) = binomial(n*Omega(n),Omega(n)) / n. %C A178034 Omega(.) = A001222(.) is the number of prime divisors of n (counted with multiplicity). %C A178034 binomial(nk,k)= n*binomial(nk-1,k-1) ensures that all entries are integers. %C A178034 Subcases for this sequence: %C A178034 If n is prime, Omega(n) = 1, and a(n) = binomial (n,1) / n = 1. %C A178034 If n and n+1 are products of two primes (A070552), then Omega(n) = Omega(n+1) = 2, and binomial(n*Omega(n), Omega(n)) / n = binomial(2*n, 2) / n = 2*n-1 and binomial(2*(n+1), 2) / (n+1) = 2*n+1, and we obtain two consecutive numbers of the form (x, x+2), for example (17,19), (27,29), (41,43),... at n =9, 14... %C A178034 Chaining this property: If n, n+1, and n+2 are semiprimes (A056809) , we find three consecutive numbers of the form (x, x+2,x+4), for example (65, 67, 69), (169, 171, 173), at n=33, 85. %C A178034 At places where Omega(n)=3, we find the subsequence A060544, for example a(8) = A060544(8). %C A178034 At places where Omega(n)=4, we find the subsequence A015219. %H A178034 Harvey P. Dale, <a href="/A178034/b178034.txt">Table of n, a(n) for n = 1..1000</a> %e A178034 a(8) = binomial(8*Omega(8),Omega(8))/8 = binomial(8*3,3)/8 = 2024/8 = 253. %p A178034 A178034 := proc(n) %p A178034 local o ; %p A178034 o := numtheory[bigomega](n) ; %p A178034 binomial(n*o,o)/n ; %p A178034 end proc: # _R. J. Mathar_, Jul 08 2012 %t A178034 bon[n_]:=Module[{o=PrimeOmega[n]},Binomial[n*o,o]/n]; Array[bon,60] (* _Harvey P. Dale_, Jul 22 2014 *) %o A178034 (PARI) a(n)=my(b=bigomega(n));binomial(n*b,b)/n \\ _Charles R Greathouse IV_, Oct 25 2012 %Y A178034 Cf. A001358, A038456 %K A178034 nonn %O A178034 1,4 %A A178034 _Michel Lagneau_, May 17 2010