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!)
A338845 No nonprime digit is present in a(n) * a(n+1). 8

%I #10 Nov 18 2020 20:04:18

%S 1,2,11,3,9,8,4,13,21,12,6,37,15,5,7,36,62,86,27,101,22,16,17,19,28,

%T 84,33,69,83,31,25,23,14,18,29,77,49,48,74,78,94,38,194,378,199,127,

%U 175,43,54,143,39,57,41,55,61,53,44,58,134,248,224,123,45,75,47,59,97,26,202,161,157,46,82,271,87,256

%N No nonprime digit is present in a(n) * a(n+1).

%C The nonprime digits are 0, 1, 4, 6, 8 and 9. This is the lexicographically earliest sequence of distinct positive terms with this property.

%H Robert Israel, <a href="/A338845/b338845.txt">Table of n, a(n) for n = 1..6500</a>

%e a(1) * a(2) = 1 * 2 = 2 (no nonprime digit is present);

%e a(2) * a(3) = 2 * 11 = 22 (no nonprime digit is present);

%e a(3) * a(4) = 11 * 3 = 33 (no nonprime digit is present);

%e a(4) * a(5) = 3 * 9 = 27 (no nonprime digit is present); etc.

%p N:= 500: # for terms before the first term >= N

%p S:= select(t -> t mod 10 <> 0, [$2...N]):

%p nS:= nops(S):

%p V:=Vector(N):

%p V[1]:= 1:

%p for n from 2 do

%p for i from 1 to nS+2-n do

%p s:= S[i];

%p if convert(convert(V[n-1]*s,base,10),set) subset {2,3,5,7} then

%p V[n]:= s;

%p S:= subsop(i=NULL,S);

%p break

%p fi;

%p od;

%p if V[n] = 0 then break fi;

%p od:

%p convert(V[1..n-1],list); # _Robert Israel_, Nov 18 2020

%t Block[{a = {1}}, Do[Block[{k = 1}, While[Nand[FreeQ[a, k], NoneTrue[IntegerDigits@ Total[a[[-1]]*k], ! PrimeQ@ # &]], k++]; AppendTo[a, k]], {i, 2, 76}]; a] (* _Michael De Vlieger_, Nov 12 2020 *)

%Y Cf. A338839, A338840, A338841, A338842, A338843, A338844, A338846 (variants on the same idea).

%K base,nonn

%O 1,2

%A _Eric Angelini_ and _Carole Dubois_, Nov 11 2020

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 April 23 07:34 EDT 2024. Contains 371905 sequences. (Running on oeis4.)