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.

A382176 Numbers k such that the period of 1/k when expanded in golden ratio base is palindromic.

Original entry on oeis.org

1, 2, 36, 38, 644, 646, 682, 11556, 11558, 11592, 12198, 12238
Offset: 1

Views

Author

Amiram Eldar, Mar 17 2025

Keywords

Comments

a(13) > 80000, if it exists.

Examples

			  n | a(n) | period (row n of A382172)
  --+------+-----------------------------------------------------------------------
  1 |    1 | 0
  2 |    2 | 0, 1, 0
  3 |   36 | 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0
  4 |   38 | 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0
		

Crossrefs

Programs

  • Mathematica
    q[k_] := PalindromeQ[RealDigits[1/k, GoldenRatio, A001175[k], -1][[1]]]; Select[Range[1000], q] (* using A001175[n] from A001175 *)