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.

A163935 Third right hand column of triangle A163934.

This page as a plain text file.
%I A163935 #12 Jun 02 2025 01:49:37
%S A163935 35,340,1750,6440,19110,48720,110880,231000,448305,820820,1431430,
%T A163935 2395120,3867500,6054720,9224880,13721040,19975935,28528500,40042310,
%U A163935 55326040,75356050,101301200,134550000,176740200,229790925,295937460
%N A163935 Third right hand column of triangle A163934.
%H A163935 G. C. Greubel, <a href="/A163935/b163935.txt">Table of n, a(n) for n = 3..1000</a>
%F A163935 a(n) = (n-2)*(n-1)*(n)*stirling1(n+2,n)/3!.
%F A163935 G.f.: x^3*(35 + 10*x^2 + 60*x)/(1 - x)^8.
%p A163935 nmax:=28; mmax:=nmax: with(combinat, stirling1): for n from 1 to nmax do for m from 1 to n do a(n,m):=(-1)^(n+m)*m*(m+1)*(m+2)*stirling1(n+2,m+2)/3! od; od: seq(a(n,n-2),n=3..nmax);
%t A163935 CoefficientList[Series[x^3 (35 + 60 x + 10 x^2)/(1 - x)^8, {x, 0, 50}], x] (* _G. C. Greubel_, Aug 08 2017 *)
%o A163935 (PARI) x='x+O('x^50); Vec(x^3*(35 + 60*x + 10*x^2)/(1-x)^8) \\ _G. C. Greubel_, Aug 08 2017
%Y A163935 Cf. A048994 (Stirling1).
%Y A163935 Equals the third right hand column of triangle A163934.
%Y A163935 A000292 and A027777 are the first and second right hand columns.
%K A163935 nonn,easy
%O A163935 3,1
%A A163935 _Johannes W. Meijer_, Aug 13 2009