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!)
A369060 LCM-transform of Sycamore's D(3) variant of Doudna sequence (A356867). 2

%I #9 Jan 13 2024 16:13:53

%S 1,2,3,5,2,1,1,2,3,7,1,1,5,1,1,1,2,1,1,1,1,5,1,1,1,2,3,11,1,1,1,1,1,1,

%T 1,1,7,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,2,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,

%U 1,1,1,1,1,1,1,5,1,1,1,2,3,13,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1

%N LCM-transform of Sycamore's D(3) variant of Doudna sequence (A356867).

%C See discussion at A368900.

%H Antti Karttunen, <a href="/A369060/b369060.txt">Table of n, a(n) for n = 1..19683</a>

%F a(n) = lcm {1..A356867(n)} / lcm {1..A356867(n-1)}.

%F a(n) = A014963(A356867(n)). [This holds because A356867 satisfies the property S explained in A368900]

%o (PARI)

%o up_to = 3^9; \\ Checked up to (3^12)

%o A356867list(up_to) = { my(v=vector(up_to),met=Map(),h=0,ak); for(i=1,#v,if(1==sumdigits(i,3), v[i] = i; h = i, ak = v[i-h]; forprime(p=2,,if(3!=p && !mapisdefined(met,p*ak), v[i] = p*ak; break))); mapput(met,v[i],i)); (v); };

%o v356867 = A356867list(up_to);

%o A356867(n) = v356867[n];

%o LCMtransform(v) = { my(len = length(v), b = vector(len), g = vector(len)); b[1] = g[1] = 1; for(n=2,len, g[n] = lcm(g[n-1],v[n]); b[n] = g[n]/g[n-1]); (b); };

%o v369060 = LCMtransform(v356867);

%o A369060(n) = v369060[n];

%o A014963(n) = { ispower(n, , &n); if(isprime(n), n, 1); };

%Y Cf. A014963, A356867, A368900.

%K nonn

%O 1,2

%A _Antti Karttunen_, Jan 13 2024

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 11 21:50 EDT 2024. Contains 374234 sequences. (Running on oeis4.)