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 A047285 #15 Sep 08 2022 08:44:56 %S A047285 0,2,3,6,7,9,10,13,14,16,17,20,21,23,24,27,28,30,31,34,35,37,38,41,42, %T A047285 44,45,48,49,51,52,55,56,58,59,62,63,65,66,69,70,72,73,76,77,79,80,83, %U A047285 84,86,87,90,91,93,94,97,98,100,101,104,105,107,108,111 %N A047285 Numbers that are congruent to {0, 2, 3, 6} mod 7. %H A047285 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,0,1,-1). %F A047285 G.f.: x^2*(2+x+3*x^2+x^3) / ( (1+x)*(1+x^2)*(x-1)^2 ). - _R. J. Mathar_, Oct 25 2011 %F A047285 From _Wesley Ivan Hurt_, Jun 02 2016: (Start) %F A047285 a(n) = a(n-1) + a(n-4) - a(n-5) for n>5. %F A047285 a(n) = (14*n-13+3*i^(2*n)+(1+i)*i^(-n)+(1-i)*i^n)/8 where i=sqrt(-1). %F A047285 a(2k) = A047276(k), a(2k-1) = A047355(k). (End) %p A047285 A047285:=n->(14*n-13+3*I^(2*n)+(1+I)*I^(-n)+(1-I)*I^n)/8: seq(A047285(n), n=1..100); # _Wesley Ivan Hurt_, Jun 02 2016 %t A047285 Table[(14n-13+3*I^(2n)+(1+I)*I^(-n)+(1-I)*I^n)/8, {n, 80}] (* _Wesley Ivan Hurt_, Jun 02 2016 *) %t A047285 Select[Range[0,120],MemberQ[{0,2,3,6},Mod[#,7]]&] (* or *) LinearRecurrence[ {1,0,0,1,-1},{0,2,3,6,7},100] (* _Harvey P. Dale_, Jul 12 2020 *) %o A047285 (Magma) [n : n in [0..150] | n mod 7 in [0, 2, 3, 6]]; // _Wesley Ivan Hurt_, Jun 02 2016 %Y A047285 Cf. A047276, A047355. %K A047285 nonn,easy %O A047285 1,2 %A A047285 _N. J. A. Sloane_