login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A358898
Primes p(k) such that p(k)^p(k) < p(k+1)^p(k-1).
2
199, 523, 1669, 1933, 1951, 2113, 2311, 2593, 2803, 2971, 3469, 4159, 4423, 6451, 7129, 7351, 7459, 7759, 8389, 8971, 9439, 10009, 10039, 10531, 11551, 12073, 12163, 13009, 13339, 13933, 14251, 14563, 14593, 15683, 16141, 16453, 17209, 17683, 17989, 18919
OFFSET
1,1
EXAMPLE
For k=46, let p = prime(45) = 197, q = prime(46) = 199, and r = prime(47) = 211. Then q^q < r^p, where (r^p) = (2.5815...)*q^q.
MATHEMATICA
p[n_] := Prime[n];
u = Select[1 + Range[3000], p[#]^p[#] < p[# + 1]^p[# - 1] &] (* A358897 *)
Prime[u] (* A358898 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Dec 06 2022
STATUS
approved