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.

Showing 1-5 of 5 results.

A353722 Records in A353717.

Original entry on oeis.org

0, 1, 2, 5, 13, 53, 56, 76, 86, 90, 185, 245, 322, 549, 1047, 1209, 1647, 2635, 2969, 3915, 5257, 18890, 20336, 21146, 21249, 21389, 28422, 30940, 33309, 38405, 40124, 40424, 42821, 57411, 57845, 64384, 90577, 110980, 124837, 124847, 151819, 176727, 221472, 224818, 374756, 380615, 410534, 542718, 666397, 768871, 792936, 792939, 797670, 1004869, 1094200
Offset: 1

Views

Author

N. J. A. Sloane, May 10 2022

Keywords

Comments

These are the indices of the terms of A353709 that are the slowest to appear (cf. A353723).

Crossrefs

A353723 Indices of records in A353717.

Original entry on oeis.org

0, 1, 2, 3, 5, 7, 11, 15, 23, 27, 29, 31, 39, 47, 55, 61, 63, 95, 111, 123, 127, 191, 255, 431, 443, 447, 495, 511, 639, 703, 759, 763, 767, 879, 895, 943, 959, 1007, 1023, 1727, 1775, 1791, 1919, 2015, 2047, 2559, 3007, 3063, 3071, 3583, 3839, 3967, 4031, 4063, 4079, 4095, 6111, 6127, 6143, 7135, 7165, 7167, 7671, 7679, 7935, 8063, 8183, 8191, 11775, 11999, 12031
Offset: 1

Views

Author

Rémy Sigrist and N. J. A. Sloane, May 10 2022

Keywords

Comments

These are the numbers that are the slowest to appear in A353709.
Also distinct values of A353710; a(n) appears A353718(n) times in A353710.

Crossrefs

A353709 a(0)=0, a(1)=1; thereafter a(n) = smallest nonnegative integer not among the earlier terms of the sequence such that a(n) and a(n-2) have no common 1-bits in their binary representations and also a(n) and a(n-1) have no common 1-bits in their binary representations.

Original entry on oeis.org

0, 1, 2, 4, 8, 3, 16, 12, 32, 17, 6, 40, 64, 5, 10, 48, 65, 14, 128, 33, 18, 68, 9, 34, 20, 72, 35, 132, 24, 66, 36, 25, 130, 96, 13, 144, 98, 256, 21, 42, 192, 257, 22, 104, 129, 258, 28, 97, 384, 26, 37, 320, 136, 7, 80, 160, 11, 84, 288, 131, 76, 272, 161, 70, 264, 49, 134, 328, 512, 19, 44, 448, 513, 30, 224, 768, 15, 112, 640, 259, 52, 200, 514, 53
Offset: 0

Views

Author

N. J. A. Sloane, May 06 2022

Keywords

Comments

A set-theory analog of A084937.
Conjecture: This is a permutation of the nonnegative numbers.

Crossrefs

Cf. A084937 (number theory analog), A109812, A121216, A353405 (powers of 2), A353708, A353710, A353715 and A353716 (a(n)+a(n+1)), A353717 (inverse), A353718, A353719 (primes), A353720 and A353721 (Records).
For the numbers that are the slowest to appear see A353723 and A353722.

Programs

A353719 Index of prime(n) in A353709, or -1 if prime(n) does not appear in A353709.

Original entry on oeis.org

2, 5, 13, 53, 56, 34, 9, 69, 86, 185, 245, 50, 102, 105, 549, 83, 692, 1209, 114, 329, 99, 1007, 189, 235, 47, 319, 542, 740, 724, 232, 5257, 59, 159, 373, 480, 1100, 1371, 476, 1141, 1138, 1044, 498, 18890, 156, 363, 867, 929, 7890, 1041, 925, 564, 12929, 682
Offset: 1

Views

Author

N. J. A. Sloane, May 09 2022

Keywords

Comments

Prime(n) refers to the n-th term in the sequence of primes, not the n-th prime in A353709.

Examples

			A353709 has offset 0 and begins 0, 1, 2, 4, 8, 3, 16, 12, 32, 17, 6, 40, 64, 5, 10, ..., so a(1) = 2 (from A353709(2) = 2), and a(7) = 9 (from A353709(9) = 17 = prime(7)).
		

Crossrefs

Extensions

More terms from Rémy Sigrist, May 09 2022

A351628 Partial sums of A352717.

Original entry on oeis.org

1, 2, 5, 9, 13, 17, 24, 31, 38, 45, 56, 67, 78, 89, 100, 111, 122, 140, 158, 176, 194, 212, 230, 248, 266, 284, 302, 320, 349, 378, 407, 436, 465, 494, 523, 552, 581, 610, 639, 668, 697, 726, 755, 784, 813, 842, 889, 936, 983, 1030, 1077, 1124, 1171, 1218
Offset: 1

Views

Author

Clark Kimberling, May 04 2022

Keywords

Crossrefs

Programs

  • Mathematica
    Accumulate[Flatten[Map[ConstantArray[LucasL[#],LucasL[#-1]]&,Range[15]]]] (* Peter J. C. Moses, May 02 2022 *)
  • Python
    from itertools import islice
    def A351628_gen(): # generator of terms
        a, b, c = 1, 3, 0
        while True:
            yield from (c+i*a for i in range(1,b-a+1))
            a, b, c = b, a+b, c + a*(b-a)
    A351628_list = list(islice(A351628_gen(),40)) # Chai Wah Wu, Jun 09 2022
Showing 1-5 of 5 results.