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!)
A055789 a(n) = binomial(n, round(sqrt(n))). 1

%I #13 Jul 29 2022 18:32:12

%S 1,1,2,3,6,10,15,35,56,84,120,165,220,715,1001,1365,1820,2380,3060,

%T 3876,4845,20349,26334,33649,42504,53130,65780,80730,98280,118755,

%U 142506,736281,906192,1107568,1344904,1623160,1947792,2324784,2760681

%N a(n) = binomial(n, round(sqrt(n))).

%H G. C. Greubel, <a href="/A055789/b055789.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n^2) = A014062(n).

%e a(9) = C(9,3) = 9!/(3!*6!) = 84

%p seq( binomial(n, round(sqrt(n))), n=0..40); # _G. C. Greubel_, Jan 25 2020

%t Table[Binomial[n, Round[Sqrt[n]]], {n,0,40}] (* _G. C. Greubel_, Jan 25 2020 *)

%o (PARI) vector(40, n, binomial(n, round(sqrt(n))) ) \\ _G. C. Greubel_, Jan 25 2020

%o (Magma) [Binomial(n, Round(Sqrt(n))): n in [0..40]]; // _G. C. Greubel_, Jan 25 2020

%o (Sage) [binomial(n, round(sqrt(n))) for n in (0..40)] # _G. C. Greubel_, Jan 25 2020

%o (Python)

%o from math import comb, isqrt

%o def A055789(n): return comb(n,(m:=isqrt(n))+ int((n-m*(m+1)<<2)>=1)) # _Chai Wah Wu_, Jul 29 2022

%Y Cf. A000194, A014062.

%K easy,nonn

%O 0,3

%A _Henry Bottomley_, Jul 13 2000

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 09:20 EDT 2024. Contains 371967 sequences. (Running on oeis4.)