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.

A062748 Fourth column (r=3) of FS(3) staircase array A062745.

This page as a plain text file.
%I A062748 #58 Jan 05 2025 19:51:36
%S A062748 3,9,19,34,55,83,119,164,219,285,363,454,559,679,815,968,1139,1329,
%T A062748 1539,1770,2023,2299,2599,2924,3275,3653,4059,4494,4959,5455,5983,
%U A062748 6544,7139,7769,8435,9138,9879,10659,11479,12340,13243,14189,15179,16214,17295,18423
%N A062748 Fourth column (r=3) of FS(3) staircase array A062745.
%C A062748 In the Frey-Sellers reference this sequence is called {(n+2) over 3}_{2}, n >= 0.
%C A062748 If X is an n-set and Y a fixed (n-3)-subset of X then a(n-3) is equal to the number of 3-subsets of X intersecting Y. - _Milan Janjic_, Aug 15 2007
%C A062748 Let A be the Hessenberg matrix of order n, defined by: A[1,j]=1, A[i,i]:=-1, A[i,i-1]=-1, and A[i,j]=0 otherwise. Then, for n>=6, a(n-6) = coeff(charpoly(A,x), x^(n-2)). - _Milan Janjic_, Jan 26 2010
%C A062748 For n>=4, a(n-4) is the number of permutations of 1,2,...,n, such that n-3 is the only up-point, or, the same, a(n-4) is up-down coefficient {n,4} (see comment in A060351). - _Vladimir Shevelev_, Feb 14 2014
%H A062748 G. C. Greubel, <a href="/A062748/b062748.txt">Table of n, a(n) for n = 0..1000</a>
%H A062748 Guillaume Aupy and Julien Herrmann. <a href="http://dx.doi.org/10.1080%2F10556788.2016.1230612">Periodicity in optimal hierarchical checkpointing schemes for adjoint computations</a>. Optimization Methods and Software, Volume 32, 2017 - Issue 3. <a href="http://people.bordeaux.inria.fr/gaupy/ressources/pub/journals/oms_periodicity.pdf">Preprint</a>
%H A062748 D. D. Frey and J. A. Sellers, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/39-2/frey.pdf">Generalizing Bailey's generalization of the Catalan numbers</a>, The Fibonacci Quarterly, 39 (2001) 142-148.
%H A062748 Milan Janjic, <a href="http://www.pmfbl.org/janjic/">Two Enumerative Functions</a>
%H A062748 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1).
%F A062748 a(n) = A062745(n+2, 3) = binomial(n+4, 3) - 1 = (n+1)*(n^2 + 8*n + 18)/3!.
%F A062748 G.f.: N(3;1, x)/(1-x)^4 with N(3;1, x) = 3 - 3*x + x^2, polynomial of the second row of A062746.
%F A062748 a(n-3) = ((n^3 - n)/6) - 1, n >= 3. - _Zerinvary Lajos_, May 05 2007
%F A062748 a(n) = A000292(n+2) - 1. - _Zerinvary Lajos_, May 05 2007
%F A062748 a(n) = Sum_{i=2..n} i*(i+1)/2. - _Artur Jasinski_, Mar 14 2008
%F A062748 a(n) = -A050407(-1-n) for all n in Z. - _Michael Somos_, Jan 28 2018
%F A062748 a(n) = A000292(n+3) - A000124(n+3). - _Torlach Rush_, Aug 03 2018
%F A062748 E.g.f.: (1/6)*(18 + 36*x + 12*x^2 + x^3)*exp(x). - _G. C. Greubel_, Apr 22 2024
%e A062748 G.f. = 3 + 9*x + 19*x^2 + 34*x^3 + 55*x^4 + 83*x^5 + 119*x^6 + 164*x^7 + ...
%p A062748 seq(((n^3-n)/6)-1,n=3..40); # _Zerinvary Lajos_, May 05 2007
%t A062748 LinearRecurrence[{4,-6,4,-1},{3,9,19,34},40] (* _Harvey P. Dale_, Jan 13 2019 *)
%t A062748 Binomial[4+Range[0,50], 3] -1 (* _G. C. Greubel_, Apr 22 2024 *)
%o A062748 (PARI) {a(n) = binomial(n+4, 3) - 1}; /* _Michael Somos_, Jan 28 2018 */
%o A062748 (Magma) [Binomial(n+4,3) -1 : n in [0..50]]; // _G. C. Greubel_, Apr 22 2024
%o A062748 (SageMath) [binomial(n+4,3) - 1 for n in range(51)] # _G. C. Greubel_, Apr 22 2024
%Y A062748 A column of triangle A014473.
%Y A062748 Cf. A000124, A000292, A050407, A060351, A062745.
%K A062748 nonn,easy
%O A062748 0,1
%A A062748 _Wolfdieter Lang_, Jul 12 2001