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.

A317102 Powerful numbers whose distinct prime multiplicities are pairwise indivisible.

Original entry on oeis.org

1, 4, 8, 9, 16, 25, 27, 32, 36, 49, 64, 72, 81, 100, 108, 121, 125, 128, 169, 196, 200, 216, 225, 243, 256, 288, 289, 343, 361, 392, 432, 441, 484, 500, 512, 529, 625, 648, 675, 676, 729, 800, 841, 864, 900, 961, 968, 972, 1000, 1024, 1089, 1125, 1152, 1156, 1225
Offset: 1

Views

Author

Gus Wiseman, Aug 01 2018

Keywords

Comments

A number is powerful if its prime multiplicities are all greater than 1.

Examples

			144 = 2^4 * 3^2 is not in the sequence because 4 and 2 are not pairwise indivisible.
		

Crossrefs

Programs

  • Maple
    filter:= proc(n) local L,i,j,q;
      L:= convert(map(t -> t[2],ifactors(n)[2]),set);
      if min(L) = 1 then return false fi;
      for j from 2 to nops(L) do
        for i from 1 to j-1 do
          q:= L[i]/L[j];
          if q::integer or (1/q)::integer then return false fi;
      od od;
      true
    end proc:
    select(filter, [$4..10000]); # Robert Israel, Jun 23 2019
  • Mathematica
    Select[Range[1000],And[Max@@Last/@FactorInteger[#]>=2,Select[Tuples[Last/@FactorInteger[#],2],And[UnsameQ@@#,Divisible@@#]&]=={}]&]

Extensions

Definition corrected and a(1)=1 inserted by Robert Israel, Jun 23 2019