A308752 Integers k such that the equation A034699(k)=x has more than one solution in the range [prevprime(k), nextprime(k)].
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
Keywords
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
Links
- L. Joris Perrenet, Table of n, a(n) for n = 1..108
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
Comments