login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A135965
a(n) = binomial(floor(n*(1+sqrt(2))),n) for n>=0.
3
1, 2, 6, 35, 126, 792, 3003, 11440, 75582, 293930, 1961256, 7726160, 30421755, 206253075, 818809200, 5567902560, 22239974430, 151584480450, 608359048206, 2438362177020, 16735679449896, 67327446062800, 462525733568080
OFFSET
0,2
LINKS
MATHEMATICA
Table[Binomial[Floor[n*(1+Sqrt[2])], n], {n, 0, 30}] (* Harvey P. Dale, Aug 25 2015 *)
PROG
(PARI) a(n)=binomial(floor(n*(1+sqrt(2))), n)
(Magma) [Binomial(Floor(n*(1+Sqrt(2))), n): n in [0..30]]; // G. C. Greubel, Aug 17 2018
CROSSREFS
Cf. A135964.
Sequence in context: A327038 A228931 A101262 * A018983 A279736 A081003
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 11 2007
STATUS
approved