login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081393 a(n) is the smallest k such that number of non-unitary prime divisors of central binomial coefficient, A000984(k) = C(2*k,k) equals n. 2
1, 3, 5, 14, 48, 74, 182, 314, 480, 774, 960, 1321, 1323, 1670, 3121, 3455, 3457, 3472, 3462, 3469, 8203, 9991, 12163, 15838, 15840, 17665, 18480, 18482, 19458, 19464, 36782, 19865, 36789, 40048, 43603, 43655, 47518, 61654, 61653, 61685, 61684, 87120, 92958, 93181, 93185, 93187, 93191 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Min{k; A081387(k) = n}.
EXAMPLE
n=5: a(5)=74, C(148,74) has 5 non-unitary prime divisors: {2,3,5,7,11} and 74 is the smallest.
MATHEMATICA
seq[len_, kmax_] := Module[{s = Table[0, {len}], k = 1, c = 0, i}, While[c < len && k < kmax, i = Count[FactorInteger[Binomial[2*k, k]][[;; , 2]], _?(# > 1 &)] + 1; If[i <= len && s[[i]] == 0, c++; s[[i]] = k]; k++]; TakeWhile[s, # > 0 &]]; seq[20, 10^4] (* Amiram Eldar, May 15 2023 *)
CROSSREFS
Sequence in context: A230585 A006395 A078718 * A338368 A129326 A167553
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 27 2003
EXTENSIONS
a(11)-a(21) from Michel Marcus, Sep 01 2019
a(22)-a(46) from Amiram Eldar, May 15 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)