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!)
A135963 a(n) = binomial(floor(n*(sqrt(5)+3)/2), n) for n>=0. 2
1, 2, 10, 35, 210, 1287, 5005, 31824, 125970, 817190, 5311735, 21474180, 141120525, 927983760, 3796297200, 25140840660, 103077446706, 686353797976, 4568648125690, 18851684897584, 125994627894135, 520341450264090 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = binomial(A001950(n), A000201(n)), where A001950(n) = floor(n*phi^2) and A000201(n) = floor(n*phi) are the upper and lower Wythoff sequences, respectively, with phi = (sqrt(5)+1)/2.
PROG
(PARI) a(n)=binomial(floor(n*(sqrt(5)+3)/2), n)
(PARI) {a(n)=local(phi=(sqrt(5)+1)/2); binomial(floor(n*phi^2), floor(n*phi))}
(Python)
from math import isqrt, comb
def A135963(n): return comb(n+(n+isqrt(5*n**2)>>1), n) # Chai Wah Wu, Aug 10 2022
CROSSREFS
Sequence in context: A220255 A146983 A327075 * A140954 A309889 A155894
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 11 2007
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 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)