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.

A218715 a(n) is smallest number such that a(n)^2 + 1 is divisible by 53^n.

Original entry on oeis.org

0, 23, 500, 27590, 623098, 23048345, 5041394261, 416081467190, 11331029931180, 50928660480181, 6548598523124085, 2441875986594058601, 76594163421571591377, 7783548304686046882879, 252583670951378815076851, 4392422457122810120236558, 1165802007767335105471573954
Offset: 0

Views

Author

Michel Lagneau, Nov 04 2012

Keywords

Examples

			a(3) = 27590 because 27590^2+1 =  53 ^ 3 * 5113.
		

Crossrefs

Programs

  • Mathematica
    b=23;n53=53;jo=Join[{0,b},Table[n53=53*n53;b=PowerMod[b,53,n53];b=Min[b,n53-b],{99}]]