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

A344281 Integers m for which F (mod m) has rotational symmetry.

Original entry on oeis.org

2, 3, 5, 6, 7, 9, 10, 13, 14, 17, 18, 23, 25, 26, 27, 34, 37, 41, 43, 46, 47, 49, 50, 53, 54, 61, 65, 67, 73, 74, 81, 82, 83, 85, 86, 89, 94, 97, 98, 103, 106, 107, 109, 113, 122, 123, 125, 127, 129, 130, 134, 137, 146, 149, 157, 161, 162, 163, 166, 167, 169, 170
Offset: 1

Views

Author

Michel Marcus, May 14 2021

Keywords

Comments

Flanagan et al. define F (mod m) as the set of points [x_i, y_i] (mod m) where x_i = Fibonacci(i) and y_i = Fibonacci(i+1).

Crossrefs

Programs

  • PARI
    \\ where pisano(n) is A001175
    hasrot(m) = {if (m==1, return (0)); if (m==2, return (1)); my(j = pisano(m)/2); my(vf = [fibonacci(j), fibonacci(j+1)]); Mod(vf, m) == [0, -1];}
Showing 1-1 of 1 results.