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-3 of 3 results.

A368121 A variant of A367150 with application of the distance minimization to an 8-fold symmetrically expanded sector between 0 and Pi/4 of the pair of rotated grids created by the strip bijection of A307110.

Original entry on oeis.org

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

Views

Author

Hugo Pfoertner, Jan 05 2024

Keywords

Crossrefs

A305575, A305576 are used for enumeration of the grid points.

Programs

  • PARI
    \\ See Pfoertner link.

A368125 A variant of A367894 with application of the distance minimization to the first of two symmetrized versions of the strip bijection between two square lattices as described in A368121.

Original entry on oeis.org

1, 8, 12, 60, 24, 72, 300, 264, 216, 624, 168, 1692, 2232, 1752, 4824, 1560, 9804, 17064, 13080, 35040, 12456, 57084, 123096, 92952
Offset: 1

Views

Author

Hugo Pfoertner, Dec 31 2023

Keywords

Crossrefs

A permutation of A368124.
A368130 is the analog for the second symmetrized version of the strip bijection.

A368129 A variant of A367146 with application of the distance minimization to the second of two symmetrized versions of the strip bijection between two square lattices as described in A368126.

Original entry on oeis.org

1, 8, 12, 24, 72, 156, 168, 216, 264, 624, 1560, 1752, 1836, 2232, 4824, 12456, 13080, 16380, 17064, 35040, 92184, 92952, 123096, 128844, 244584, 639192, 651432, 855240, 945756
Offset: 1

Views

Author

Hugo Pfoertner, Jan 03 2024

Keywords

Comments

Apparently, a(n) == 0 (mod 4) for n > 1. For cycles, whose lengths are multiples of 8, the visited points form 8 separated islands.
Larger terms are 1660752, 4293336, 4462104, 5787768, 6647916, 11050488, 28333080, 38414184, 45366204, 184427544.

Examples

			See files linked in A368130 for visualization of orbits.
		

Crossrefs

A368130 is a permutation of this sequence.
A368124 is the analog for the first symmetrized version of the strip bijection.

Programs

  • PARI
    \\ Uses definitions and functions from
    \\ a367150_PARI.txt and a368126_PARI.txt
    cycle(v) = {my (n=1, w=BijectionD(v, Bijectionk)); while (w!=v, n++; w=BijectionD(w, Bijectionk)); n};
    a368129(rmax=235) = {my (L=List()); for (r2=0, rmax^2, for (x=0, sqrtint(r2), my (y2=r2-x^2, y); if (issquare(y2, &y), if(x>=y, my (c=cycle([x, y])); if (setsearch(L, c)==0, print([c, [x, y], sqrt(x^2+y^2)], ", "); listput(L, c); listsort(L, 1)))))); L};
    a368129() \\ Terms < 1000, takes 5-10 minutes CPU time
Showing 1-3 of 3 results.