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

A218565 Numbers k such that k^2 + 1 is divisible by a 6th power.

Original entry on oeis.org

1068, 14557, 16693, 30182, 32318, 45807, 47943, 61432, 63568, 77057, 79193, 92682, 94818, 108307, 110443, 123932, 126068, 139557, 141693, 155182, 157318, 170807, 172943, 186432, 188568, 202057, 204193, 217682, 219818, 233307, 235443, 248932, 251068, 264557
Offset: 1

Views

Author

Michel Lagneau, Nov 02 2012

Keywords

Examples

			1068 is in the sequence because 1068^2 + 1 = 5^6 * 73.
390112 is in the sequence because 390112^2 + 1 = 5 * 13 * 17 ^ 6 * 97.
1999509 is in the sequence because 1999509^2 + 1 = 2 * 13 ^ 6 * 29 * 14281.
		

Crossrefs

Cf. A001014 (6th powers).

Programs

  • Mathematica
    Select[Range[2,27000],Max[Transpose[FactorInteger[#^2+1]][[2]]]>5&]

A218574 Numbers k such that k^2 + 1 is divisible by a 7th power.

Original entry on oeis.org

32318, 45807, 110443, 123932, 188568, 202057, 266693, 280182, 344818, 358307, 422943, 436432, 501068, 514557, 579193, 592682, 657318, 670807, 735443, 748932, 813568, 827057, 891693, 905182, 969818, 983307
Offset: 1

Views

Author

Michel Lagneau, Nov 02 2012

Keywords

Examples

			32318 is in the sequence because 32318^2 + 1 =  5 ^ 7 * 29 * 461.
6826318 is in the sequence because 6826318^2 + 1 = 5 ^ 3 * 13 ^ 8 * 457.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2,1500000],Max[Transpose[FactorInteger[#^2+1]][[2]]]>6&]
Showing 1-2 of 2 results.