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.

A147540 Numbers whose binary representation is the concatenation of 2n-1 digits 1, n digits 0 and 2n-1 digits 1.

This page as a plain text file.
%I A147540 #10 Sep 08 2022 08:45:38
%S A147540 5,231,7967,260223,8372735,268306431,8588894207,274869551103,
%T A147540 8796026044415,281474440364031,9007194961870847,288230341800361983,
%U A147540 9223371762010423295,295147902980463788031,9444732948147641253887
%N A147540 Numbers whose binary representation is the concatenation of 2n-1 digits 1, n digits 0 and 2n-1 digits 1.
%C A147540 a(n) is the number whose binary representation is A138826(n).
%H A147540 G. C. Greubel, <a href="/A147540/b147540.txt">Table of n, a(n) for n = 1..660</a>
%F A147540 From _R. J. Mathar_, Nov 09 2008: (Start)
%F A147540 a(n) = 2^(5*n-2) - 2^(3*n-1) + 2^(2*n-1) - 1.
%F A147540 G.f.: x*(5 +6*x -128*x^2 +768*x^3)/((1-x)*(1-4*x)*(1-8*x)*(1-32*x)). (End)
%p A147540 seq( 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1, n=1..20); # _G. C. Greubel_, Jan 12 2020
%t A147540 Table[FromDigits[Join[Table[1, {2n-1}], Table[0, {n}], Table[1, {2n-1}]], 2], {n,15}] (* _Stefan Steinerberger_, Nov 11 2008 *)
%o A147540 (PARI) vector(20, n, 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1) \\ _G. C. Greubel_, Jan 12 2020
%o A147540 (Magma) [2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1: n in [1..20]]; // _G. C. Greubel_, Jan 12 2020
%o A147540 (Sage) [2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1 for n in (1..20)] # _G. C. Greubel_, Jan 12 2020
%o A147540 (GAP) List([1..20], n-> 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1); # _G. C. Greubel_, Jan 12 2020
%Y A147540 Cf. A138826.
%K A147540 base,easy,nonn
%O A147540 1,1
%A A147540 _Omar E. Pol_, Nov 06 2008
%E A147540 More terms from _R. J. Mathar_ and _Stefan Steinerberger_, Nov 11 2008