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!)
A355703 a(n) = binomial(n, floor(log(n))). 1
1, 1, 3, 4, 5, 6, 7, 28, 36, 45, 55, 66, 78, 91, 105, 120, 136, 153, 171, 190, 1330, 1540, 1771, 2024, 2300, 2600, 2925, 3276, 3654, 4060, 4495, 4960, 5456, 5984, 6545, 7140, 7770, 8436, 9139, 9880, 10660, 11480, 12341, 13244, 14190, 15180, 16215, 17296, 18424, 19600, 20825 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
a:= n-> binomial(n, ilog(n)):
seq(a(n), n=1..60); # Alois P. Heinz, Jul 31 2022
MATHEMATICA
a[n_] := Binomial[n, Floor[Log[n]]]; Array[a, 50] (* Amiram Eldar, Jul 31 2022 *)
PROG
(Python)
from numpy import log
from math import comb
for n in range(1, 50):
x = comb(n, floor(log(n)))
print("{}, ".format(x), end='')
(PARI) a(n) = binomial(n, floor(log(n))); \\ Michel Marcus, Jul 31 2022
CROSSREFS
Sequence in context: A095138 A026475 A101747 * A134338 A084919 A153100
KEYWORD
nonn
AUTHOR
Christoph B. Kassir, Jul 14 2022
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 May 3 20:47 EDT 2024. Contains 372225 sequences. (Running on oeis4.)