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.

Previous Showing 21-22 of 22 results.

A276203 Numbers k such that k^9 + 9^k is prime.

Original entry on oeis.org

2, 76, 122, 422, 2300, 5090, 7166, 58046, 91382, 234178, 314738
Offset: 1

Views

Author

Felix Fröhlich, Aug 27 2016

Keywords

Comments

Numbers k such that A185277(k) is prime.

Examples

			2 is a term of the sequence, because A185277(2) = 593 is prime.
		

Crossrefs

Programs

  • PARI
    is(n) = ispseudoprime(n^9+9^n)

A321518 Smallest k > 1 such that n^k + k^n is prime, i.e., a Leyland prime, or 0 if no such k exists.

Original entry on oeis.org

3, 2, 0, 24
Offset: 2

Views

Author

Felix Fröhlich, Nov 12 2018

Keywords

Comments

a(4) = 0. Proof: For k == 1 (mod 4), 4^k + k^4 = 4*x^4 + k^4 = (2*x^2 - 2*k*x + k^2)(2*x^2 + 2*k*x + k^2), where x = 4^((k-1)/4). For k == 3 (mod 4), 4^k + k^4 = 64*x^4 + k^4 = (8*x^2 - 4*k*x + k^2)(8*x^2 + 4*k*x + k^2), where x = 4^((k-3)/4) (cf. Israel, 2015).
Conjecture: a(6) = 0.
From Jon E. Schoenfield, Nov 13 2018: (Start)
Let t = 6^k + k^6.
If k is even, then 2|t.
If k is odd but not divisible by 7, then 7|t.
If k is divisible by 3, then 3|t.
If k == 7 or 63 (mod 70), then 5|t.
Thus, a(6) == 35, 49, 91, 119, 161, or 175 (mod 210) if a(6) > 0. (End)

Examples

			For n = 5: 5^24 + 24^5 = 59604644783353249 is prime, and 24 is the smallest k > 1 such that 5^k + k^5 is prime, so a(5) = 24.
		

Crossrefs

Previous Showing 21-22 of 22 results.