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.

A354566 Numbers k such that P(k)^4 | k and P(k+1)^2 | (k+1), where P(k) = A006530(k) is the largest prime dividing k.

This page as a plain text file.
%I A354566 #13 Jun 04 2022 02:47:34
%S A354566 101250,11859210,23049600,32580250,131545575,162364824,969697050,
%T A354566 1176565754,1271688417,1612089680,1862719859,2409451520,2441023914,
%U A354566 3182903731,3697778084,4010283270,4329214629,6666661950,6932744126,7739389944,9188994752,11717364285,17306002674
%N A354566 Numbers k such that P(k)^4 | k and P(k+1)^2 | (k+1), where P(k) = A006530(k) is the largest prime dividing k.
%C A354566 De Koninck and Moineau (2018) proved that this sequence is infinite assuming the Bunyakovsky conjecture.
%D A354566 Jean-Marie De Koninck and Nicolas Doyon, The Life of Primes in 37 Episodes, American Mathematical Society, 2021, p. 232.
%H A354566 Daniel Suteu, <a href="/A354566/b354566.txt">Table of n, a(n) for n = 1..1897</a> (terms <= 10^17)
%H A354566 Jean-Marie De Koninck and Matthieu Moineau, <a href="http://emis.muni.cz/journals/JIS/VOL21/DeKoninck/dek22.html">Consecutive Integers Divisible by a Power of their Largest Prime Factor</a>, J. Integer Seq., Vol. 21 (2018), Article 18.9.3.
%H A354566 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/BouniakowskyConjecture.html">Bouniakowsky Conjecture</a>.
%H A354566 Wikipedia, <a href="https://en.wikipedia.org/wiki/Bunyakovsky_conjecture">Bunyakovsky conjecture</a>.
%e A354566 101250 = 2 * 3^4 * 5^4 is a term since P(101250) = 5 and 5^4 | 101250, 101251 = 19 * 73^2, P(101251) = 73, and 73^2 | 101251.
%t A354566 p[n_] := FactorInteger[n][[-1, 2]]; Select[Range[3*10^7], p[#] > 3 && p[# + 1] > 1 &]
%o A354566 (Python)
%o A354566 from sympy import factorint
%o A354566 def c(n, e): f = factorint(n); return f[max(f)] >= e
%o A354566 def ok(n): return n > 1 and c(n, 4) and c(n+1, 2)
%o A354566 print([k for k in range(10**6) if ok(k)]) # _Michael S. Branicky_, May 30 2022
%Y A354566 Subsequence of A070003, A354558 and A354564.
%Y A354566 Cf. A006530, A071178, A354565.
%K A354566 nonn
%O A354566 1,1
%A A354566 _Amiram Eldar_, May 30 2022