The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A351082 a(n) = Product_{d|n} A019565(A289814(d)); a product obtained from the 2-digits present in ternary expansions of the divisors of n. 3

%I #8 Jan 31 2022 18:11:05

%S 1,2,1,2,2,6,3,12,1,4,2,6,1,12,6,36,6,30,5,40,15,20,10,540,30,60,1,12,

%T 2,36,1,72,6,36,36,30,1,20,1,240,2,540,3,120,30,100,10,8100,15,600,90,

%U 900,30,210,28,1008,35,28,14,7560,21,84,105,504,28,1260,7,504,210,3024,42,94500,35,140,3150,700,420,18900

%N a(n) = Product_{d|n} A019565(A289814(d)); a product obtained from the 2-digits present in ternary expansions of the divisors of n.

%F a(n) = A019565(A289814(n)) * A293222(n).

%o (PARI)

%o A019565(n) = { my(m=1, p=1); while(n>0, p = nextprime(1+p); if(n%2, m *= p); n >>= 1); (m); };

%o A289814(n) = { my(d=digits(n, 3)); fromdigits(vector(#d, i, if (d[i]==2, 1, 0)), 2); };

%o A351082(n) = { my(m=1); fordiv(n,d,m *= A019565(A289814(d))); (m); };

%Y Cf. A019565, A289814, A293221, A351081, A351092.

%K nonn,easy

%O 1,2

%A _Antti Karttunen_, Jan 31 2022

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 May 17 12:10 EDT 2024. Contains 372600 sequences. (Running on oeis4.)