login
Decimal representation ends with either 2 or 9.
15

%I #28 Apr 15 2023 04:20:47

%S 2,9,12,19,22,29,32,39,42,49,52,59,62,69,72,79,82,89,92,99,102,109,

%T 112,119,122,129,132,139,142,149,152,159,162,169,172,179,182,189,192,

%U 199,202,209,212,219,222,229,232,239,242,249,252,259,262,269,272,279,282,289,292,299,302,309,312,319,322,329,332,339

%N Decimal representation ends with either 2 or 9.

%C Natural numbers not in A273664.

%H Antti Karttunen, <a href="/A273669/b273669.txt">Table of n, a(n) for n = 1..10000</a>

%H <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature(1,1,-1).

%F a(n) = 10*(((n-2)+A000035(n))/2) + 2 [when n is odd], or + 9 [when n is even].

%F For n >= 5, a(n) = 2*a(n-2) - a(n-4).

%F a(n) = A126760(A084967(n)).

%F a(n) = A249746((3*A249745(n))-1).

%F Other identities. For all n >= 1:

%F A084967(n) = 5*A007310(n) = A007310(a(n)).

%F G.f.: x*(x^2+7*x+2)/((x+1)*(x-1)^2).

%F Sum_{n>=1} (-1)^(n+1)/a(n) = sqrt((1+1/sqrt(5))/2)*phi^2*Pi/10 - log(phi)/(2*sqrt(5)) - log(2)/5, where phi is the golden ratio (A001622). - _Amiram Eldar_, Apr 15 2023

%t Select[Range@ 340, MemberQ[{2, 9}, Mod[#, 10]] &] (* or *)

%t Table[{10 n + 2, 10 n + 9}, {n, 0, 33}] // Flatten (* or *)

%t CoefficientList[Series[(-5/(1 - x) + (11 - x)/(-1 + x)^2 - 2/(1 + x))/2, {x, 0, 67}], x] (* _Michael De Vlieger_, Aug 07 2016 *)

%o (Scheme)

%o (define (A273669 n) (+ (* 10 (/ (+ (- n 2) (if (odd? n) 1 0)) 2)) (if (odd? n) 2 9)))

%Y Sequences A017293 and A017377 interleaved.

%Y Cf. A000035, A001622, A007310, A084967, A126760, A249745, A249746.

%Y Cf. also A273664, A249824, A275716.

%K nonn,base,easy

%O 1,1

%A _Antti Karttunen_, Aug 06 2016