cp's OEIS Frontend

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.

A140407 A000225 interleaved with A000051.

This page as a plain text file.
%I A140407 #19 Dec 22 2022 02:42:44
%S A140407 1,2,3,3,7,5,15,9,31,17,63,33,127,65,255,129,511,257,1023,513,2047,
%T A140407 1025,4095,2049,8191,4097,16383,8193,32767,16385,65535,32769,131071,
%U A140407 65537,262143,131073,524287,262145,1048575,524289,2097151,1048577,4194303
%N A140407 A000225 interleaved with A000051.
%H A140407 Harvey P. Dale, <a href="/A140407/b140407.txt">Table of n, a(n) for n = 0..1000</a>
%H A140407 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (-1,2,2).
%F A140407 a(2n) = A000225(n+1) = A135530(2n) - 1. a(2n+1) = A000051(n) = 1 + A135530(2n+1).
%F A140407 a(n) = -a(n-1) + 2*a(n-2) + 2*a(n-3). a(2n) + a(2n+1) = 3*A000079(n).
%F A140407 O.g.f.: (1 + 3x + 3x^2)/((1+x)*(1-2x^2)). - _R. J. Mathar_, Jul 08 2008
%t A140407 LinearRecurrence[{-1,2,2},{1,2,3},50] (* _Harvey P. Dale_, Apr 03 2013 *)
%o A140407 (Python)
%o A140407 def A140407(n): return 2 if n == 1 else (1<<(n>>1))|1 if n&1 else -1^(-2<<(n>>1)) # _Chai Wah Wu_, Dec 21 2022
%Y A140407 Cf. A000051, A000225, A000079, A135530.
%K A140407 nonn
%O A140407 0,2
%A A140407 _Paul Curtz_, Jun 16 2008
%E A140407 Edited and extended by _R. J. Mathar_, Jul 08 2008