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

A089173
Solutions x for x^4-1 = kp where p is prime and k=1,2...
0
2, 2, 4, 3, 6, 3, 5, 4, 4, 10, 9, 6, 14, 5, 11, 16, 6, 5, 8, 20, 15, 7, 24, 8, 26, 12, 19, 7, 8, 10
OFFSET
1,1
PROG
(PARI) xpm1(n, m, pow) = { for(k=1, m, for(x=1, n, y= x^pow - 1; z=floor(y/k); if(floor(y/k)*k==y, if(isprime(z), print1(x", ") ) ) ) )
CROSSREFS
Sequence in context: A059975 A087656 A122811 * A126090 A058266 A138664
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Dec 07 2003
STATUS
approved