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.

A308752 Integers k such that the equation A034699(k)=x has more than one solution in the range [prevprime(k), nextprime(k)].

Original entry on oeis.org

4180, 4199, 43355, 43384, 68400, 68425, 162150, 162197, 326781, 326830, 448477, 448514, 1013948, 1013985, 1060790, 1060851, 1357216, 1357299, 1373904, 1373951, 1568800, 1568853, 1928880, 1928927, 2313685, 2313744, 8752880, 8752951, 11555804, 11555901, 11962832, 11962935, 16062201, 16062280, 23120064, 23120153
Offset: 1

Views

Author

Michel Marcus, Jun 22 2019

Keywords

Comments

Is it always true that a(2*n) - a(2*n-1) = A034699(2*n) = A034699(2*n-1)? - I. V. Serov, Jun 23 2019

Examples

			A034699(4180) = A034699(4199) = 19 in the range [4177, 4201].
A034699(23120064) = A034699(23120153) = 89 in [23120039, 23120171]. - _I. V. Serov_, Jun 23 2019
		

Crossrefs

Cf. A007917 (prevprime), A007918 (nextprime), A034699.

Programs

  • PARI
    lppf(n) = if(1==n, n, my(f=factor(n)); vecmax(vector(#f[, 1], i, f[i, 1]^f[i, 2]))); \\ A034699
    lista(nn) = {for (n=1, nn, my(p = prime(n), q = nextprime(p+1)); my(v = vector(q-p-1, k, lppf(k+p)), vs = vecsort(v,,8)); if (#v != #vs, for (i=1, #vs, my(vx = select(x->(x==vs[i]), v, 1)); if (#vx > 1, for (j=1, #vx, print1(p+vx[j], ", "));););););}

Extensions

a(35)-a(36) from I. V. Serov, Jun 23 2019