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 A156619 #39 Feb 26 2023 02:35:05 %S A156619 7,18,32,43,57,68,82,93,107,118,132,143,157,168,182,193,207,218,232, %T A156619 243,257,268,282,293,307,318,332,343,357,368,382,393,407,418,432,443, %U A156619 457,468,482,493,507,518,532,543,557,568,582,593,607,618,632,643,657,668 %N A156619 Numbers congruent to {7, 18} mod 25. %C A156619 Also, numbers k such that k^2 + 1 == 0 (mod 25). %C A156619 Numbers of the form 25*k+7 or 25*k+18. Numbers b such that 25 is a base-b Euler pseudoprime. - _Karsten Meyer_, Jan 05 2011 %H A156619 Vincenzo Librandi, <a href="/A156619/b156619.txt">Table of n, a(n) for n = 1..1000</a> %H A156619 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (1,1,-1). %F A156619 a(n) = 2*a(n-1)-a(n-2)-3, if n is even, and a(n) = 2*a(n-1)-a(n-2)+3, if n is odd, with a(1)=7, a(2)=18. %F A156619 From _R. J. Mathar_, Feb 19 2009: (Start) %F A156619 a(n) = a(n-1)+a(n-2)-a(n-3). %F A156619 a(n) = 25*n/2-25/4-3*(-1)^n/4. %F A156619 G.f.: x*(7+11*x+7*x^2)/((1+x)*(1-x)^2). (End) %F A156619 E.g.f.: 7 + ((50*x - 25)*exp(x) - 3*exp(-x))/4. - _David Lovler_, Sep 08 2022 %F A156619 Sum_{n>=1} (-1)^(n+1)/a(n) = tan(11*Pi/50)*Pi/25. - _Amiram Eldar_, Feb 26 2023 %t A156619 fQ[n_] := Mod[n^2 + 1, 25] == 0; Select[ Range@ 670, fQ] %t A156619 Flatten[#+{7,18}&/@(25*Range[0,30])] (* _Harvey P. Dale_, Jan 24 2013 *) %t A156619 Select[Range[1, 700], MemberQ[{7, 18}, Mod[#, 25]]&] (* _Vincenzo Librandi_, Apr 08 2013 *) %o A156619 (Magma) [n: n in [1..700] | n mod 25 in [7, 18]]; // _Vincenzo Librandi_, Apr 08 2013 %K A156619 nonn,easy %O A156619 1,1 %A A156619 _Vincenzo Librandi_, Feb 11 2009