login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A147540 Numbers whose binary representation is the concatenation of 2n-1 digits 1, n digits 0 and 2n-1 digits 1. 5
5, 231, 7967, 260223, 8372735, 268306431, 8588894207, 274869551103, 8796026044415, 281474440364031, 9007194961870847, 288230341800361983, 9223371762010423295, 295147902980463788031, 9444732948147641253887 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is the number whose binary representation is A138826(n).
LINKS
FORMULA
From R. J. Mathar, Nov 09 2008: (Start)
a(n) = 2^(5*n-2) - 2^(3*n-1) + 2^(2*n-1) - 1.
G.f.: x*(5 +6*x -128*x^2 +768*x^3)/((1-x)*(1-4*x)*(1-8*x)*(1-32*x)). (End)
MAPLE
seq( 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1, n=1..20); # G. C. Greubel, Jan 12 2020
MATHEMATICA
Table[FromDigits[Join[Table[1, {2n-1}], Table[0, {n}], Table[1, {2n-1}]], 2], {n, 15}] (* Stefan Steinerberger, Nov 11 2008 *)
PROG
(PARI) vector(20, n, 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1) \\ G. C. Greubel, Jan 12 2020
(Magma) [2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1: n in [1..20]]; // G. C. Greubel, Jan 12 2020
(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
(GAP) List([1..20], n-> 2^(5*n-2) -2^(3*n-1) +2^(2*n-1) -1); # G. C. Greubel, Jan 12 2020
CROSSREFS
Cf. A138826.
Sequence in context: A355877 A065757 A157776 * A187366 A176898 A274996
KEYWORD
base,easy,nonn
AUTHOR
Omar E. Pol, Nov 06 2008
EXTENSIONS
More terms from R. J. Mathar and Stefan Steinerberger, Nov 11 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)