Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A200065 Start with n, concatenate its trivial divisors, and repeat until a prime is reached. a(n) = 0 if no prime is ever reached. 1

%I #40 Apr 20 2012 11:58:49

%S 0,0,13,0,0,0,17,0,19,0,1111111111111111111,0,113,0,0,0,1117,0,11119,

%T 0,111121,0,1123,0,0,0,127,0,1129,0,131,0

%N Start with n, concatenate its trivial divisors, and repeat until a prime is reached. a(n) = 0 if no prime is ever reached.

%C a(33) has 715 digits and is too large to include.

%C a(A065502(n)) = 0. There are other integers for which a(n) = 0 (i.e., n = 221).

%C The number (10^270343 - 1)/9 appears 161046 times in this sequence.

%C All odd primes from A096497 are in the sequence.

%H Arkadiusz Wesolowski, <a href="/A200065/b200065.txt">Table of n, a(n) for n = 1..1032</a>

%e 17 -> {1, 17} = 117 (composite) -> {1, 117} = 1117 (prime), so a(17) = 1117.

%t lst = {}; Do[If[DivisorSigma[0, n] == 1 || Divisible[n, 5] || EvenQ[n], AppendTo[lst, 0], If[PrimeQ[n], n = 10^Length[IntegerDigits[n]] + n]; While[True, If[PrimeQ[n], Break[]]; n = FromDigits[Flatten[IntegerDigits[{1, n}]]]]; AppendTo[lst, n]], {n, 32}]; lst

%Y Cf. A004022, A096497.

%K base,nonn

%O 1,3

%A _Arkadiusz Wesolowski_, Apr 18 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 28 07:11 EDT 2024. Contains 374676 sequences. (Running on oeis4.)