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.

A304410 Numbers k such that k = Product (p_j^e_j) = Product (p_j*(e_j + 1)).

Original entry on oeis.org

1, 8, 9, 72, 13440, 21120, 24960, 29568, 32640, 34944, 36480, 44160, 45696, 49280, 51072, 54912, 55680, 58240, 59520, 61824, 71040, 71808, 76160, 77952, 78720, 80256, 82560, 83328, 84864, 85120, 90240, 91520, 94848, 97152, 99456, 101760, 103040, 110208, 113280, 114816, 115584, 117120, 119680
Offset: 1

Views

Author

Ilya Gutkovskiy, May 12 2018

Keywords

Comments

Numbers k such that A000005(k)*A007947(k) = k.
Fixed points of A304409.
All terms are refactorable numbers (A033950).

Examples

			13440 is a term because 13440 = 2^7*3*5*7 = 2*(7 + 1) * 3*(1 + 1) * 5*(1 + 1) * 7*(1 + 1).
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Times @@ (#[[1]] (#[[2]] + 1) & /@ FactorInteger[n]); a[1] = 1; Select[Range[120000], a[#] == # &]
  • PARI
    isok(k) = {my(f = factor(k)); numdiv(f) * vecprod(f[, 1]) == k;} \\ Amiram Eldar, Jan 31 2025