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.

A105323 Numbers of the form 41*(2*10^n+1) where (2*10^n+1)/3 is prime (n is in the sequence A096507).

Original entry on oeis.org

861, 8241, 82000041, 8200000041, 82000000041, 8200000000041, 8200000000000000000041, 8200000000000000000000041, 8200000000000000000000000000000000000000041
Offset: 1

Views

Author

Farideh Firoozbakht, Apr 16 2005

Keywords

Comments

A105323=41*A093170=41*(2*10^A096507+1)=41*(2*10^(A056657+1)+1). If m is in the sequence then d(m)*reversal(m)=sigma(m) (see A104907). So this sequence is a subsequence of A104907.

Examples

			861 is in the sequence because 861=41*(2*10^1+1); (2*10^1+1)/3=7 and 7 is prime.
		

Crossrefs

Programs

  • Mathematica
    Do[If[PrimeQ[(2*10^n + 1)/3], Print[41*(2*10^n + 1)]], {n, 63}]