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.

A213337 Odd composite numbers k that divide the imaginary part of (1+2i)^A201629(k).

Original entry on oeis.org

143, 399, 527, 779, 1501, 1679, 2407, 2627, 2703, 2737, 3239, 3289, 3599, 3827, 4031, 4033, 4879, 4991, 5183, 5291, 5719, 5921, 6479, 6601, 6721, 7739, 8321, 8687, 8903, 9361, 9503, 10153, 10439, 11537, 11663
Offset: 1

Views

Author

Keywords

Comments

The odd terms of A212502.

Crossrefs

Programs

  • Mathematica
    t[n_]:=Which[Mod[n,4]==3,n+1,Mod[n,4]==1,n-1,True,n]; Select[1+ Range[1000], Mod[#,2]==1&&! PrimeQ[#] && Im[PowerMod[1 + 2I, t[#], #]] == 0 &]