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 A290290 #28 Jun 26 2019 09:30:13 %S A290290 3432,5980,12870,12880,13090,14280,14586,20475,28272,28275,31416, %T A290290 31450,34580,35650,39270,45045,45220,72072,76076,96135,97812,106080, %U A290290 106590,120120,121992,125580,132804,139230,173420,181350,185640,191400,195624,202275,203112,215050,216315,222768,232254,240240,266475 %N A290290 Numbers m having greatest prime power divisor d such that d is smaller than the difference between m and the largest prime smaller than m and d is smaller than the difference between m and twice the largest prime smaller than m/2. %C A290290 It is conjectured that for all integers m there exist two primes p and r such that all the binomial coefficients (m,k) with 1 <= k <= m-1 are divisible by either p or r. Using Lucas's Theorem we can prove that the conjecture is true for integers m such that the difference between m and the largest prime smaller than m is smaller than the greatest prime power divisor of m. In A290203 we examine the integers that do not satisfy this property. However, when this property is not satisfied, if the difference between m and twice the largest prime smaller than m/2 is smaller than the greatest prime power divisor of m we can prove the conjecture for odd numbers and some cases of even numbers. Note that we take the difference between m and twice the largest prime smaller than m/2 because this is the last digit of the base-p representation of m, where p refers to the largest prime smaller than m/2. Therefore, this list examines the numbers that satisfy neither of the two properties and hence are the difficult cases for the proof of the conjecture. %H A290290 Charles R Greathouse IV, <a href="/A290290/b290290.txt">Table of n, a(n) for n = 1..10000</a> %H A290290 Sílvia Casacuberta Puig, <a href="https://math.mit.edu/research/highschool/rsi/documents/2017Puig.pdf">On the divisibility of binomial coefficients</a>, 2018; see <a href="https://arxiv.org/abs/1906.07652">also</a>, arXiv:1906.07652 [math.NT], 2019. %H A290290 E. Kummer, <a href="http://gdz.sub.uni-goettingen.de/dms/load/img/?PID=GDZPPN002147432">Über die Ergänzungssätze zu den allgemeinen Reciprocitätsgesetzen</a>, Journal für die reine und angewandte Mathematik, 44:93-146, 1852. %H A290290 E. Lucas, <a href="http://www.jstor.org/stable/2369308">Théorie des fonctions numériques simplement périodiques</a>, American Journal of Mathematics, 44:184-196, 1878. %H A290290 J. Shareshian and R. Woodroofe, <a href="https://arxiv.org/abs/1505.05143">Divisibility of binomial coefficients and generation of alternating groups</a>, arXiv:1505.05143 [math.CO], 2015-2017. %H A290290 Wikipedia, <a href="https://en.wikipedia.org/wiki/Kummer%27s_theorem">Kummer's Theorem</a> %H A290290 Wikipedia, <a href="https://en.wikipedia.org/wiki/Lucas%27s_theorem">Lucas' Theorem</a> %e A290290 The first number of the sequence is 3432. 3432 = 2^3*3*11*13, so the greatest prime power divisor of 3432 is 13. The largest prime smaller than 3432 is 3413, and the difference between these two numbers is 19. Because 19 is greater than 13 the first property is not satisfied. 3432/2 = 1716, and the closest prime to 1716 is 1709. The difference between m and 2*1709 = 3418 is 14. 14 is also greater than 13, which means that the second property is also not satisfied. Thus 3432 is in the sequence. %t A290290 okQ[m_] := m > 2 && Module[{d = Max[Power @@@ FactorInteger[m]]}, d < m - NextPrime[m, -1] && d < m - 2 NextPrime[(m-1)/2, -1]]; %t A290290 Reap[For[m = 1, m <= 300000, m++, If[okQ[m], Print[m]; Sow[m]]]][[2, 1]] (* _Jean-François Alcover_, Feb 18 2019 *) %o A290290 (PARI) a034699(n) = my(d = Vecrev(divisors(n))); for (k=1, #d, if (isprimepower(d[k]), return (d[k]));); %o A290290 isok(n) = my(thed = a034699(n)); (thed < (n - precprime(n-1))) && (thed < (n - 2*precprime((n-1)/2))); \\ _Michel Marcus_, Aug 08 2017 %o A290290 (PARI) is(n)=if(n<9, return(0)); my(f=factor(n),d=f[1,1]^f[1,2],t); for(i=2,#f~, t=f[i,1]^f[i,2]; if(t>d, d=t)); d < n-precprime(n-1) && d < n - 2*precprime((n-1)/2) \\ _Charles R Greathouse IV_, Aug 10 2017 %o A290290 (PARI) allUnitaryDivisorsLessThan(n,sz)=my(t,e); if(t==1, return(sz>1)); forprime(p=2,sz-1, e=valuation(n,p); t=p^e; if(t>1, if(t>=sz, return(0)); n/=t; if(n==1, return(1)))); 0 %o A290290 is(n)=n>9 && allUnitaryDivisorsLessThan(n, min(n - 2*precprime((n-1)/2), n-precprime(n-1))) \\ _Charles R Greathouse IV_, Aug 10 2017 %Y A290290 Cf. A034699. %K A290290 nonn %O A290290 1,1 %A A290290 _Sílvia Casacuberta Puig_, Jul 26 2017