cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A004389 a(n) = binomial(8*n, n-8).

This page as a plain text file.
%I A004389 #15 Sep 08 2022 08:44:32
%S A004389 1,72,3160,109736,3321960,91962520,2392407864,59487568920,
%T A004389 1429702652400,33469894423680,767464189477128,17307292232623120,
%U A004389 385037822966765800,8470484585302467168,184606563010558803400,3991697442876739754640,85733828145510955528212
%N A004389 a(n) = binomial(8*n, n-8).
%D A004389 M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 828.
%H A004389 Vincenzo Librandi, <a href="/A004389/b004389.txt">Table of n, a(n) for n = 8..780</a>
%H A004389 M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
%p A004389 A004389:=n->binomial(8*n,n-8): seq(A004389(n), n=8..30); # _Wesley Ivan Hurt_, Apr 18 2017
%t A004389 Table[Binomial[8 n, n - 8], {n, 8, 40}] (* _Vincenzo Librandi_, Apr 20 2017 *)
%o A004389 (Magma) [Binomial(8*n,n-8): n in [8..30]]; // _Vincenzo Librandi_, Apr 20 2017
%K A004389 nonn,easy
%O A004389 8,2
%A A004389 _N. J. A. Sloane_