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-3 of 3 results.

A005934 Highly powerful numbers: numbers with record value of the product of the exponents in prime factorization (A005361).

Original entry on oeis.org

1, 4, 8, 16, 32, 64, 128, 144, 216, 288, 432, 864, 1296, 1728, 2592, 3456, 5184, 7776, 10368, 15552, 20736, 31104, 41472, 62208, 86400, 108000, 129600, 194400, 216000, 259200, 324000, 432000, 518400, 648000, 972000, 1296000, 1944000, 2592000
Offset: 1

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    a = {1}; b = {1}; f[n_] := Times @@ Last /@ FactorInteger[n]; Do[If[f@ n > Max[b], And[AppendTo[b, f@ n], AppendTo[a, n]]], {n, 1000000}]; a (* Michael De Vlieger, Aug 28 2015 *)
    With[{s = Array[Times @@ FactorInteger[#][[All, -1]] &, 3*10^6]}, Map[FirstPosition[s, #][[1]] &, Union@ FoldList[Max, s]]] (* Michael De Vlieger, Oct 15 2017 *)
    DeleteDuplicates[Table[{n,Times@@FactorInteger[n][[All,2]]},{n,26*10^5}],GreaterEqual[#1[[2]],#2[[2]]]&][[All,1]] (* Harvey P. Dale, May 13 2022 *)
  • PARI
    {prdex(n)=local(s,fac); s=1; fac=factor(n); for(k=1,matsize(fac)[1],s=s*fac[k,2]); return(s)} {hp(m)=local(rec); rec=0; for(n=1,m,if(prdex(n)>rec,rec=prdex(n); print1(n",")))}

Formula

For n = Product p_i^e_i, let b(n) = Product e_i; then n is highly powerful if b(n) sets a new record.

Extensions

Hardy and Subbarao give an extensive table.
Corrected and extended by Jason Earls, Jul 10 2003

A379593 Numbers that set records in A379592.

Original entry on oeis.org

8, 32, 128, 512, 2048, 8192, 20736, 41472, 82944, 165888, 186624, 373248, 746496, 1492992, 2985984, 5971968, 6718464, 11943936, 23887872, 26873856, 53747712, 107495424, 214990848, 241864704, 429981696, 859963392, 967458816, 1719926784, 3439853568, 3869835264, 7464960000
Offset: 1

Views

Author

Michael De Vlieger, Dec 30 2024

Keywords

Comments

Proper subset of the intersection of A025487 and A320966.
Let k be a powerful number (in A001694) and let coreful d | k be such that k/d is also coreful, i.e., rad(d) = rad(d/k) = rad(k), where rad = A007947 is the squarefree kernel. Suppose d < d/k. Then coreful d may either divide k/d or not (indeed, if d/k < d, k/d may either divide d or not).
Then we have either d | k/d (the cardinality of such divisors is A379592(n) for k = A320966(n)) or d does not divide k/d (the cardinality of such divisors is A379552(n) for k = A376936(n)). (The case d = k/d, both certainly coreful, of course pertains to perfect squares k in A000290.)
Coreful divisors are counted by A361430 across natural numbers, and A370329 across powerful numbers A001694. Numbers that set records in A361430 (and A370329) are in A005934 (highly powerful numbers), with records in A036965.

Examples

			Let b(n) = A379592(n).
Table showing exponents of prime power factors of a(n) for n = 1..12. Example: a(7) = 20736 = 2^8*3^4, so "8.4" appears in the "exp." column.
   n      a(n)  exp. b(a(n))
  --------------------------
   1        8    3       1   2*4
   2       32    5       2   2*16 = 4*8
   3      128    7       3   2*64 = 4*32 = 8*16
   4      512    9       4   2*256 = 4*128 = 8*64 = 16*32
   5     2048   11       5   2*1024 = 4*512 = 8*256 = 16*128 = 32=64
   6     8192   13       6   2*4096 = 4*2048 = 8*1024 = 16*512 = 32*256 = 64*128
   7    20736    8.4     7
   8    41472    9.4     8
   9    82944   10.4     9
  10   165888   11.4    10
  11   186624    8.6    11
  12   373248    9.6    12
		

Crossrefs

Programs

  • Mathematica
    (* Load function f at A025487 *)
    r = 0; s = Union@ Flatten@ f[10]; nn = Length[s];
    rad[x_] := Times @@ FactorInteger[x][[All, 1]];
      Transpose@ Reap[Monitor[
        Do[k = s[[i]];
          If[# > r, r = #; Sow[k]] &@
            Count[Transpose@ {#, k/#} &@ #[[2 ;; Ceiling[Length[#]/2]]] &@ Divisors[k],
              _?(And[rad[#1] == rad[#2],
                Xor[Divisible[#2, #1],
                    Divisible[#1, #2]]] & @@ # &)], {i, nn}], {i, nn}] ][[-1, 1]]

A379594 Records in A379592.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 23, 24, 27, 28, 29, 31, 32, 34, 35, 36, 39, 41, 44, 47, 48, 49, 53, 55, 59, 62, 63, 71, 72, 74, 83, 84, 89, 95, 96, 104, 107, 111, 119, 120, 125, 127, 134, 139, 143, 149, 159, 161, 167, 179, 180
Offset: 1

Views

Author

Michael De Vlieger, Dec 30 2024

Keywords

Comments

See comments in A379593.
Compare with A036965 and A379554.

Crossrefs

Programs

  • Mathematica
    (* Load function f at A025487 *)
    r = 0; s = Union@ Flatten@ f[10]; nn = Length[s];
    rad[x_] := Times @@ FactorInteger[x][[All, 1]];
      Transpose@ Reap[Monitor[
        Do[k = s[[i]];
          If[# > r, r = #; Sow[r]] &@
            Count[Transpose@ {#, k/#} &@ #[[2 ;; Ceiling[Length[#]/2]]] &@ Divisors[k],
              _?(And[rad[#1] == rad[#2],
                Xor[Divisible[#2, #1],
                    Divisible[#1, #2]]] & @@ # &)], {i, nn}], {i, nn}] ][[-1, 1]]
Showing 1-3 of 3 results.