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 A047417 #27 Sep 08 2022 08:44:57 %S A047417 2,3,4,6,10,11,12,14,18,19,20,22,26,27,28,30,34,35,36,38,42,43,44,46, %T A047417 50,51,52,54,58,59,60,62,66,67,68,70,74,75,76,78,82,83,84,86,90,91,92, %U A047417 94,98,99,100,102,106,107,108,110,114,115,116,118,122,123 %N A047417 Numbers that are congruent to {2, 3, 4, 6} mod 8. %H A047417 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,0,1,-1). %F A047417 G.f.: x*(2+x+x^2+2*x^3+2*x^4) / ( (1+x)*(x^2+1)*(x-1)^2 ). - _R. J. Mathar_, Dec 05 2011 %F A047417 From _Wesley Ivan Hurt_, May 25 2016: (Start) %F A047417 a(n) = a(n-1) + a(n-4) - a(n-5) for n>5. %F A047417 a(n) = (8*n-5-i^(2*n)-(1-2*i)*i^(-n)-(1+2*i)*i^n)/4 with i=sqrt(-1). %F A047417 a(2k) = A047398(k), a(2k-1) = A047463(k). (End) %F A047417 E.g.f.: 2 + sin(x) - cos(x)/2 + (2*x - 1)*sinh(x) + (2*x - 3/2)*cosh(x). - _Ilya Gutkovskiy_, May 25 2016 %F A047417 Sum_{n>=1} (-1)^(n+1)/a(n) = (3-sqrt(2))*Pi/16 - (sqrt(2)+4)*log(2)/16 + sqrt(2)*log(sqrt(2)+2)/8. - _Amiram Eldar_, Dec 25 2021 %p A047417 A047417:=n->(8*n-5-I^(2*n)-(1-2*I)*I^(-n)-(1+2*I)*I^n)/4: seq(A047417(n), n=1..100); # _Wesley Ivan Hurt_, May 25 2016 %t A047417 Flatten[#+{2,3,4,6}&/@(8Range[0,20])] (* _Harvey P. Dale_, Dec 20 2012 *) %o A047417 (Magma) [n : n in [0..150] | n mod 8 in [2, 3, 4, 6]]; // _Wesley Ivan Hurt_, May 25 2016 %Y A047417 Cf. A047398, A047463. %K A047417 nonn,easy %O A047417 1,1 %A A047417 _N. J. A. Sloane_