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.
%I A169607 #32 Sep 08 2022 08:45:49 %S A169607 0,7,35,98,210,385,637,980,1428,1995,2695,3542,4550,5733,7105,8680, %T A169607 10472,12495,14763,17290,20090,23177,26565,30268,34300,38675,43407, %U A169607 48510,53998,59885,66185,72912,80080,87703,95795,104370,113442,123025,133133,143780,154980,166747,179095 %N A169607 a(n) = 7*A000330(n). %C A169607 From _R. J. Mathar_, Jun 30 2013: (Start) %C A169607 The array view of A001477 is %C A169607 0, 2, 5, 9, 14, 20, %C A169607 1, 4, 8, 13, 19, 26, %C A169607 3, 7, 12, 18, 25, 33, %C A169607 6, 11, 17, 24, 32, 41, %C A169607 10, 16, 23, 31, 40, 50, %C A169607 15, 22, 30, 39, 49, 60, %C A169607 and a(n) is the hook Sum_{k=0..n} A(n,k) + Sum_{r=0..n-1} A(r,n). (End) %H A169607 Vincenzo Librandi, <a href="/A169607/b169607.txt">Table of n, a(n) for n = 0..1000</a> %H A169607 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1). %F A169607 G.f.: 7*x*(1+x)/(x-1)^4. %F A169607 a(n) = Sum_{k=0..n} A169603(n,k). %F A169607 a(n) = 4*a(n-1) -6*a(n-2) +4*a(n-3) -a(n-4). - _Vincenzo Librandi_, Jul 02 2012 %t A169607 CoefficientList[Series[7*x*(1+x)/(x-1)^4,{x,0,50}],x] (* _Vincenzo Librandi_, Jul 02 2012 *) %o A169607 (Magma) I:=[0, 7, 35, 98]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..50]]; // _Vincenzo Librandi_, Jul 02 2012 %K A169607 nonn,easy %O A169607 0,2 %A A169607 _Paul Curtz_, Dec 03 2009