A316745 Numbers expressible as A*B^A in three or more different ways, with A, B > 1.
344373768, 30233088000000, 5777633090469888, 198077054103584768, 97261323672455430408, 5242880000000000000000, 32462531054272512000000, 96932598327560852471808, 20526276111602783203125000, 195845982777569926302400512, 1631774235698698006327984128
Offset: 1
Keywords
Examples
30233088000000 is a term because it can be expressed as 2*3888000^2 = 3*21600^3 = 5*360^5.
Links
- Charlie Neder, Table of n, a(n) for n = 1..1198 (terms < 10^80; terms 1..60 from Charlie Neder, terms 61..103 from Giovanni Resta)
- G. Resta, ABA numbers.
Programs
-
Mathematica
abaC[n_] := Block[{c=0, k=2}, While[n >= k 2^k, If[Mod[n, k] == 0 && IntegerQ[ (n/k)^ (1/k)], c++]; k++]; c]; lim = 10^20; a=5; Union@ Reap[ While[a 2^a < lim, b=2; While[(v = a b^a) < lim, If[abaC[v] > 2, Sow[v]]; b++]; a++]][[2, 1]]
Comments