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.

Previous Showing 11-14 of 14 results.

A103529 Values of A102370 which are >= a new power of 2.

Original entry on oeis.org

0, 3, 6, 15, 28, 61, 126, 251, 504, 1017, 2042, 4095, 8180, 16373, 32758, 65523, 131056, 262129, 524274, 1048567, 2097148, 4194285, 8388590, 16777195, 33554408, 67108841, 134217706, 268435439, 536870884, 1073741797, 2147483622
Offset: 1

Views

Author

N. J. A. Sloane and David Applegate, Mar 22 2005

Keywords

Examples

			The initial values of A102370 are 0*, 3*, 6*, 5, 4, 15*, 10, 9, 8, 11, 14, 13, 28*, 23, ... and the starred terms are those which exceed the next power of 2. Their indices (except for the zero term) are given by A000325.
		

Crossrefs

Programs

  • Python
    a=3
    print(0, end=',')
    for i in range(2,55):
        print(a, end= ',')
        a ^= a+i
    # Alex Ratushnyak, Apr 21 2012

Formula

a(n) = 2^(n-1) - (n-1) + Sum_{ k >= 1, k == n-1 mod 2^k } 2^k.
a(n+1) = 2^n + A102371(n) for n>=1. a(n) = 2^n - A103530(n). - Philippe Deléham, Mar 30 2005
a(0)=0, a(1)=3, for n>1, a(n)= a(n-1) XOR (a(n-1)+n), where XOR is the bitwise exclusive-or operator. - Alex Ratushnyak, Apr 21 2012

A103202 A102370 sorted.

Original entry on oeis.org

0, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88
Offset: 1

Views

Author

Philippe Deléham, Mar 27 2005

Keywords

Crossrefs

Cf. A102370.
Numbers missing from A102371.

A105032 Binary equivalents of A103745.

Original entry on oeis.org

1, 10, 101, 1000, 10001, 100010, 1000001, 10000000, 100000001, 1000000010, 10000000101, 100000000000, 1000000000001, 10000000000010, 100000000000001, 1000000000000000, 10000000000000001, 100000000000000010, 1000000000000000101, 10000000000000001000, 100000000000000000001, 1000000000000000000010, 10000000000000000000001
Offset: 1

Views

Author

Keywords

Crossrefs

Formula

a(n) = A007088(A103745(n)). - R. J. Mathar, May 02 2007

Extensions

More terms from R. J. Mathar, May 02 2007

A109680 a(n) = 2^(4n-2) - A104403(n).

Original entry on oeis.org

1, 2, 3, 4, 1, 6, 7, 8, 5, 10, 11, 12, 9, 14, 15, 16, 13, 18, 19, 20, 17, 22, 23, 24, 21, 26, 27, 28, 25, 30, 31, 32, 29, 34, 35, 36, 33, 38, 39, 40, 37, 42, 43, 44, 41, 46, 47, 48, 45, 50, 51, 52, 49, 54, 55, 56, 53, 58, 59, 60, 57, 62, 63, 64, 61, 2, 67, 68
Offset: 1

Views

Author

Philippe Deléham, Aug 06 2005

Keywords

Crossrefs

Extensions

More terms from Amiram Eldar, Feb 09 2023
Previous Showing 11-14 of 14 results.