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.

Showing 1-1 of 1 results.

A353543 Primitive terms of A353537.

Original entry on oeis.org

4, 6, 10, 14, 45, 63, 75, 105, 165, 195, 231, 242, 255, 285, 286, 345, 374, 418, 435, 442, 465, 494, 506, 598, 638, 646, 682, 754, 782, 806, 814, 874, 902, 946, 962, 1034, 1066, 1118, 1166, 1222, 1287, 1298, 1342, 1378, 1474, 1562, 1606, 1683, 1738, 1826, 1881
Offset: 1

Views

Author

Amiram Eldar, Apr 25 2022

Keywords

Comments

If a number is in A353537 then all its multiples are in it. Therefore, the terms of A353537 whose proper divisors are not in A353537 are the primitive terms.

Examples

			4 is a term since sigma(4)/4 = 7/4 = 1.75 > Pi^2/6 = 1.644..., the proper divisors of 4 are 1 and 2, sigma(1)/1 = 1 < Pi^2/6 and sigma(2)/2 = 3/2 < Pi^2/6.
		

Crossrefs

Subsequences: A071395, A091191, A353544.

Programs

  • Mathematica
    q[n_] := DivisorSigma[-1, n] > Pi^2/6 && AllTrue[Most @ Divisors[n], DivisorSigma[-1, #] < Pi^2/6 &]; Select[Range[2000], q]
Showing 1-1 of 1 results.