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 A269819 #30 Sep 08 2022 08:46:16 %S A269819 5,11,13,19,29,35,37,43,53,59,61,67,77,83,85,91,101,107,109,115,125, %T A269819 131,133,139,149,155,157,163,173,179,181,187,197,203,205,211,221,227, %U A269819 229,235,245,251,253,259,269,275,277,283,293,299,301,307,317 %N A269819 Numbers that are congruent to {5, 11, 13, 19} mod 24. %C A269819 No terms are multiples of 3. %C A269819 Numbers such that (j+5)*(j-5)/48 are positive integers. Equivalent to positive integers (m+3)*(m-2)/12, with m == {2,5,6,9} mod 12 (observation made in A268539 by _M. F. Hasler_, Mar 02 2016). %H A269819 Colin Barker, <a href="/A269819/b269819.txt">Table of n, a(n) for n = 1..1000</a> %H A269819 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (2,-2,2,-1). %F A269819 a(n) = a(n-4) + 24. %F A269819 a(n) = sqrt(48*A268539(n) + 25). %F A269819 G.f.: x*(1+x)*(5-4*x+5*x^2) / ((1-x)^2*(1+x^2)). - _Colin Barker_, Mar 06 2016 %F A269819 From _Wesley Ivan Hurt_, Jun 04 2016: (Start) %F A269819 a(n) = 2*a(n-1) - 2*a(n-2) + 2*a(n-3) - a(n-4) for n>4. %F A269819 a(n) = 6*n-3-(1-i)*i^(-n)-(1+i)*i^n for i=sqrt(-1). (End) %F A269819 Sum_{n>=1} (-1)^(n+1)/a(n) = (2-sqrt(2))*Pi/12. - _Amiram Eldar_, Dec 31 2021 %p A269819 A269819:=n->6*n-3-(1-I)*I^(-n)-(1+I)*I^n: seq(A269819(n), n=1..80); # _Wesley Ivan Hurt_, Jun 04 2016 %t A269819 Table[24 n + {5, 11, 13, 19}, {n, 0, 12}] // Flatten (* _Michael De Vlieger_, Mar 07 2016 *) %t A269819 Table[6n-3-(1-I)*I^(-n)-(1+I)*I^n, {n, 80}] (* _Wesley Ivan Hurt_, Jun 04 2016 *) %t A269819 LinearRecurrence[{2,-2,2,-1},{5,11,13,19},60] (* _Harvey P. Dale_, Nov 17 2017 *) %o A269819 (Magma) I:=[5,11,13,19]; [n le 4 select I[n] else Self(n-4) + 24 : n in [1..60]]; // _Vincenzo Librandi_, Mar 06 2016 %o A269819 (PARI) Vec(x*(1+x)*(5-4*x+5*x^2)/((1-x)^2*(1+x^2)) + O(x^100)) \\ _Colin Barker_, Mar 06 2016 %o A269819 (Magma) [n : n in [0..400] | n mod 24 in [5, 11, 13, 19]]; // _Wesley Ivan Hurt_, Jun 04 2016 %Y A269819 Subsequence of A001651. %Y A269819 Cf. A268539. %K A269819 nonn,easy %O A269819 1,1 %A A269819 _Bob Selcoe_, Mar 05 2016 %E A269819 Incorrect term 252 replaced by two missing terms 251 and 253 by _Colin Barker_, Mar 06 2016