A230454 Smallest odious number (A000069) that can be written as a product of n, but not fewer than n, evil numbers (A001969).
25, 575, 51175, 4554575, 405357175
Offset: 2
Links
- Vladimir Shevelev, An idea of new 4 sequences
Crossrefs
Programs
-
Maple
f:= proc(n) # least k such that n is the product of k evil numbers option remember; local t,r,x; if convert(convert(n,base,2),`+`)::even then return 1 fi; t:= infinity; for x in select(s -> s^2 <= n, numtheory:-divisors(n)) minus {1} do t:= min(t, procname(x) + procname(n/x)) od; t end proc: V:= Array(1..5): count:= 0: for n from 1 while count < 5 do v:= f(n); if v <= 5 and V[v] = 0 then V[v]:= n; count:= count+1; fi od: convert(V,list); # Robert Israel, Jul 18 2025
Extensions
a(6) from David A. Corneth, Jul 21 2025
Comments