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.

A376846 Number of m <= n such that rad(m) | n and Omega(m) > Omega(n), where rad = A007947 and Omega = A001222.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 1, 3, 0, 1, 0, 3, 1, 1, 0, 4, 0, 2, 0, 3, 0, 0, 0, 3, 1, 2, 0, 2, 0, 1, 1, 3, 0, 2, 0, 3, 0, 0, 0, 7, 0, 3, 1, 5, 0, 1, 0, 4, 0, 3, 0, 8, 0, 1, 0, 4, 0, 4, 0, 4, 2
Offset: 1

Views

Author

Michael De Vlieger, Oct 06 2024

Keywords

Comments

Number of m not exceeding n such that the squarefree kernel of m divides n, and m has more prime factors with repetition than does n.
Number of m in row n of A162306 such that Omega(m) > Omega(n).

Examples

			Table of select n such that a(n) > 0:
   n  a(n)  List of m such that Omega(m) > Omega(n).
  -------------------------------------------------
  10   1    {8}
  14   1    {8}
  18   1    {16}
  20   1    {16}
  22   2    {8, 16}
  26   2    {8, 16}
  28   1    {16}
  30   2    {16, 24}
  33   1    {27}
  34   3    {8, 16, 32}
  36   1    {32}
  38   3    {8, 16, 32}
  39   1    {27}
  40   1    {32}
  42   4    {16, 24, 32, 36}
		

Crossrefs

Programs

  • Mathematica
    rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]];
    {0}~Join~Table[With[{k = PrimeOmega[n]}, Count[Range[n], _?(And[Divisible[n, rad[#]], PrimeOmega[#] > k] &)]], {n, 2, 120}]

Formula

a(n) = card({m <= n : rad(m) | n, Omega(m) > Omega(n) }).
a(n) = 0 for prime power n (in A000961).
a(n) < A010846(n).