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”).

A259238
The bases corresponding to A257751.
2
-3, -5, -8, 3, -7, -9, 9, -7, 7, -11, 3, -15, 1, -17, -13, -15, -1, -13, 2, -20, 5, -19, -21, 5, -23, -27, -15, -3, -28, -25, 13, -4, -1, -35, -29, 4, -39, -35, 1, -41, -25, -39, 7, 3, -39, 13, -31, -21, 7, -40, -35, -3, 9, 23, -31, 1, -33, -29, 21, -31, -44
OFFSET
1,1
LINKS
Tim Johannes Ohrtmann, Table of n, a(n) for n = 1..14679
EXAMPLE
a(1) = -3 because this is the integer except 0 such that for every prime factor p of A257751(1) applies that p+b divides n+b: 35=5*7 and 2, 4 both divide 32.
PROG
(PARI) for(n=2, 1000000, if(!isprime(n), if(issquarefree(n), f=factor(n); k=0; for(b=-(f[1, 1]-1), n, c=0; for(i=1, #f[, 1], if((n+b)%(f[i, 1]+b)>0, c++)); if(c==0, if(!b==0, k++; a=b))); if(k==1, print1(a, ", ")))))
CROSSREFS
Sequence in context: A010617 A016659 A019830 * A094355 A087334 A175628
KEYWORD
sign
AUTHOR
STATUS
approved