OFFSET
1,1
COMMENTS
How quickly does this sequence grow asymptotically?
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) >> n^1.014. (This is surely not optimal.) - Charles R Greathouse IV, Jan 18 2016
EXAMPLE
64 is a member because binomial(128,64) = 2 * 3 * 5^3 * ..., where the exponent 3 of 5 is greater than the exponents 1 and 1 of 2 and 3, respectively.
PROG
(PARI) f(n, p)=my(d=Vecrev(digits(n, p)), c); sum(i=1, #d, c=(2*d[i]+c>=p))
is(n)=my(r=max(hammingweight(n), f(n, 3))); forprime(p=5, sqrtnint(n, r+1), if(f(n, p)>r, return(p))); 0
(Haskell)
import Math.NumberTheory.Primes.Factorisation (factorise)
a263924 n = a263924_list !! (n-1)
a263924_list = filter f [2..] where
f x = not (null pe23s) && any ((> e23) . snd) pes' where
e23 = maximum (map snd pe23s)
(pe23s, pes') = span ((<= 3) . fst) $ factorise $ a000984 x
-- Reinhard Zumkeller, Nov 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles R Greathouse IV, Oct 29 2015
STATUS
approved