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.

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

Original entry on oeis.org

242, 2400, 6859, 10647, 47915, 57121, 344604, 499999, 830465, 1012499, 1431125, 2098853, 2825760, 2829123, 3930399, 5560691, 11859210, 12323584, 13137830, 18253460, 18279039, 21093749, 30664296, 32279841, 33999932, 37218852, 38640401, 38740085, 41485688, 45222737
Offset: 1

Views

Author

Amiram Eldar, May 30 2022

Keywords

Examples

			242 = 2 * 11^2 is a term since P(242) = 11 and 11^2 | 242, 243 = 3^5, P(243) = 3, and 3^3 | 243.
		

Crossrefs

Subsequence of A070003 and A354558.
A354562 is a subsequence.

Programs

  • Mathematica
    p[n_] := FactorInteger[n][[-1, 2]]; Select[Range[10^6], p[#] > 1 && p[# + 1] > 2 &]
  • Python
    from sympy import factorint
    def c(n, e): f = factorint(n); return f[max(f)] >= e
    def ok(n): return n > 1 and c(n, 2) and c(n+1, 3)
    print([k for k in range(10**6) if ok(k)]) # Michael S. Branicky, May 30 2022