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!)
A117610 A nonsense sequence. 0

%I #8 Dec 26 2022 08:46:03

%S 7,11,13,2,4,8,14,1,11,13,2,8,14,1,7,11,2,14,1,7,11,13,2,8,11,13,2,14,

%T 7,11,2,8,11,2,14,11,2,8,13,2,11,2,2,14,11,2,8,13,13,2,14,2,8,13,11,2,

%U 14,13,13,2,14,2,2,13,13,13,2,14,2,2,13,14

%N A nonsense sequence.

%t (*a-> Prime[4]to Prime[12 modulo 15 as the reference sequence*)

%t a = {7, 11, 13, 2, 4, 8, 14, 1};

%t (* finds permutations of the reference sequence to match the actual primes*)

%t M = Table[Table[If[Mod[Prime[i + n], 15] - a[[m]] == 0, 1, 0], {n, 1, 8}, {m, 1, 8}], {i, 4, 68, 8}];

%t v[0] = a;

%t v[n_] := v[n] = M[[1 + Mod[n, 8]]].v[n - 1]

%t a0 = Flatten[Table[v[n][[m]], {n, 0, 8}, {m, 1, 8}]]

%K nonn,uned,obsc,less

%O 0,1

%A _Roger L. Bagula_, Apr 06 2006

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 24 02:28 EDT 2024. Contains 371917 sequences. (Running on oeis4.)