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 A182190 #56 Jan 31 2024 08:31:52 %S A182190 0,4,28,168,984,5740,33460,195024,1136688,6625108,38613964,225058680, %T A182190 1311738120,7645370044,44560482148,259717522848,1513744654944, %U A182190 8822750406820,51422757785980,299713796309064 %N A182190 a(n) = 6*a(n-1) - a(n-2) + 4 with n > 1, a(0)=0, a(1)=4. %C A182190 Also, nonnegative m such that 2m(m+2)+1 is a square. - _Bruno Berselli_, Oct 22 2012 %H A182190 G. C. Greubel, <a href="/A182190/b182190.txt">Table of n, a(n) for n = 0..1000</a> %H A182190 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (7,-7,1). %F A182190 G.f.: 4*x/((1-x)*(1-6*x+x^2)). - _Bruno Berselli_, Jun 07 2012 %F A182190 a(n) = 4*A053142(n). - _Bruno Berselli_, Jun 07 2012 %F A182190 a(n) = A001653(n+1) - 1. - _Kiran S. Kedlaya_, Mar 14 2021 %F A182190 a(n) = A000129(2*n+1) - 1. - _G. C. Greubel_, May 24 2021 %F A182190 a(n) = A143608(n)*A143608(n+1). - _R. J. Mathar_, Jan 31 2024 %F A182190 a(n)-a(n-1) = A005319(n). - _R. J. Mathar_, Jan 31 2024 %t A182190 m = 4;n = 0; c = 0; %t A182190 list3 = Reap[While[c < 22, t = 6 n - m + 4; Sow[t];m = n; n = t;c++]][[2,1]] %t A182190 Table[Fibonacci[2*n+1, 2] -1, {n,0,40}] (* _G. C. Greubel_, May 24 2021 *) %o A182190 (Magma) I:=[0,4]; [n le 2 select I[n] else 6*Self(n-1)-Self(n-2)+4: n in [1..20]]; // _Bruno Berselli_, Jun 07 2012 %o A182190 (Sage) [lucas_number1(2*n+1,2,-1) -1 for n in (0..40)] # _G. C. Greubel_, May 24 2021 %Y A182190 Cf. A000129, A182189, A182431. %K A182190 nonn,easy %O A182190 0,2 %A A182190 _Kenneth J Ramsey_, Apr 17 2012