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 A054967 #19 Sep 08 2022 08:45:01 %S A054967 0,1,9,10,11,19,20,21,29,30,31,39,40,41,49,50,51,59,60,61,69,70,71,79, %T A054967 80,81,89,90,91,99,100,101,109,110,111,119,120,121,129,130,131,139, %U A054967 140,141,149,150,151,159,160,161,169,170,171,179,180,181,189,190,191,199 %N A054967 Numbers that are congruent to {0, 1, 9} mod 10. %C A054967 Numbers with last digit 0, 1, or 9. - _Wesley Ivan Hurt_, Jun 14 2016 %H A054967 Robert Israel, <a href="/A054967/b054967.txt">Table of n, a(n) for n = 1..10000</a> %H A054967 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,1,-1). %F A054967 G.f.: x^2*(x^2+8*x+1)/((x-1)^2*(x^2+x+1)). - _Robert Israel_, Feb 23 2016 %F A054967 a(n) = a(n-1) + a(n-3) - a(n-4) for n>4. - _Vincenzo Librandi_, Feb 24 2016 %F A054967 From _Wesley Ivan Hurt_, Jun 14 2016: (Start) %F A054967 a(n) = (30*n-30+21*cos(2*n*Pi/3)+7*sqrt(3)*sin(2*n*Pi/3))/9. %F A054967 a(3k) = 10k-1, a(3k-1) = 10k-9, a(3k-2) = 10k-10. (End) %p A054967 seq(seq(10*i+j, j=[0,1,9]), i=0..30); # _Robert Israel_, Feb 23 2016 %t A054967 Select[Range[0, 200], MemberQ[{0, 1, 9}, Mod[#, 10]] &] (* or *) LinearRecurrence[{1, 0, 1, -1}, {0, 1, 9, 10}, 60] (* _Vincenzo Librandi_, Feb 24 2016 *) %o A054967 (Magma) [n: n in [0..200] | n mod 10 in [0,1,9]]; // _Vincenzo Librandi_, Feb 24 2016 %Y A054967 Cf. A047523. %K A054967 nonn,easy %O A054967 1,3 %A A054967 _Henry Bottomley_, May 24 2000