A120321 RF(7): refactorable numbers with 7 as smallest prime factor.
117649, 208422380089, 567869252041, 2839760855281, 5534900853769, 17416274304961, 69980368892329, 104413920565969, 301855146292441, 558845013849409, 743702041351801, 1268163904241521, 2607614922465721
Offset: 1
Keywords
Examples
a(1) = 7^(7-1) = 117649.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Maple
with(numtheory); p:=7: RF7:=[p^(p-1)]: P:=[seq(ithprime(i),i=2..pi(p)-1)]; for w to 1 do for j from 1 to 12^3 do k:=2*j+1; if andmap(z -> k mod z <> 0, P) then for s from 2 to p-1 by 2 do #accelerate creation n:=7^6*k^s; t:=tau(n); if not n in RF7 and (n mod t = 0) then RF7:=[op(RF7),n]; print(ifactor(n)); fi; od; fi; od od; RF7:=sort(RF7);
Comments