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

A058772
Numbers k such that k * (1+i)^k - i is a Gaussian prime.
0
2, 3, 4, 19, 25, 61, 100, 143, 144, 159, 304, 1973, 4433, 4921, 6076, 12876, 16895, 30180
OFFSET
1,1
MATHEMATICA
Do[ If[ PrimeQ[ n * (1 + I)^n - I], Print[n] ], {n, 1, 35000} ]
Select[Range[31000], PrimeQ[# (1+I)^#-I]&] (* Harvey P. Dale, Mar 06 2018 *)
CROSSREFS
Sequence in context: A245453 A067805 A092837 * A227941 A250259 A276105
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 02 2001
STATUS
approved