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.

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

Original entry on oeis.org

0, 4, 38, 1985, 27493, 390112, 390112, 96940388, 3379649772, 24306922095, 450044583893, 5597937117454, 28673959190179, 3524407382568745, 13428985415474682, 13428985415474682, 5711417117604156904, 91610966633729580058, 6709533061724423693474
Offset: 0

Views

Author

Michel Lagneau, Nov 04 2012

Keywords

Examples

			a(4) = 27493 because 27493^2+1 =  2 * 5 ^ 2 * 17 ^ 4 * 181.
		

Crossrefs

Programs

  • Mathematica
    b=4;n17=17;jo=Join[{0,b},Table[n17=17*n17;b=PowerMod[b,17,n17];b=Min[b,n17-b],{99}]]