A100717 Numbers k having a prime divisor p such that p^p is the highest power of p that divides k.
4, 12, 20, 27, 28, 36, 44, 52, 54, 60, 68, 76, 84, 92, 100, 108, 116, 124, 132, 135, 140, 148, 156, 164, 172, 180, 188, 189, 196, 204, 212, 216, 220, 228, 236, 244, 252, 260, 268, 270, 276, 284, 292, 297, 300, 308, 316, 324, 332, 340, 348, 351, 356, 364, 372
Offset: 1
Keywords
Examples
54 is included because 3^3, but not 3^4, divides 54.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Programs
-
Haskell
a100717 n = a100717_list !! (n-1) a100717_list = filter ((== 0) . a203908) [1..] -- Reinhard Zumkeller, Dec 24 2013
-
Mathematica
fQ[n_] := Union[ Table[ #[[1]] == #[[2]]] & /@ FactorInteger[n]][[ -1]] == True; Select[ Range[2, 375], fQ[ # ] &] (* Robert G. Wilson v, Dec 14 2004 *)
Formula
A203908(a(n)) = 0. - Reinhard Zumkeller, Dec 24 2013
Extensions
More terms from T. D. Noe and Robert G. Wilson v, Dec 14 2004
Comments