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 A200998 #20 Sep 08 2022 08:46:00 %S A200998 0,21,4095,794430,154115346,29897582715,5799976931385, %T A200998 1125165627105996,218276331681631860,42344483180609474865, %U A200998 8214611460706556491971,1593592278893891349967530,309148687493954215337208870,59973251781548223884068553271 %N A200998 Triangular numbers, T(m), that are three-quarters of another triangular number: T(m) such that 4*T(m)=3*T(k) for some k. %C A200998 For n>1, a(n) = 194*a(n-1) - a (n-2) + 21. See A200993 for generalization. %H A200998 Colin Barker, <a href="/A200998/b200998.txt">Table of n, a(n) for n = 0..425</a> %H A200998 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (195,-195,1). %F A200998 G.f.: (21*x)/(1 - 195*x + 195*x^2 - x^3). %F A200998 From _Colin Barker_, Mar 02 2016: (Start) %F A200998 a(n) = 195*a(n-1)-195*a(n-2)+a(n-3) for n>2. %F A200998 a(n) = ((97+56*sqrt(3))^(-n)*(-1+(97+56*sqrt(3))^n)*(-7+4*sqrt(3)+(7+4*sqrt(3))*(97+56*sqrt(3))^n))/128. %F A200998 (End) %e A200998 4*0 = 3*0. %e A200998 4*21 = 3*28. %e A200998 4*4095 = 3*5640. %e A200998 4*794430 = 3*1059240. %t A200998 LinearRecurrence[{195, -195, 1}, {0, 21, 4095}, 30] (* _Vincenzo Librandi_, Mar 03 2016 *) %o A200998 (PARI) concat(0, Vec(21/(1 - 195*x + 195*x^2 - x^3) + O(x^99))) \\ _Charles R Greathouse IV_, Dec 20 2011 %o A200998 (Magma) I:=[0,21]; [n le 2 select I[n] else 194*Self(n-1) - Self(n-2) + 21: n in [1..20]]; // _Vincenzo Librandi_, Mar 03 2016 %Y A200998 Cf. A001652, A029549, A053141, A075528, A200993-A201008. %K A200998 nonn,easy %O A200998 0,2 %A A200998 _Charlie Marion_, Dec 20 2011