cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A319989 a(n) = A303757(A252463(n)).

This page as a plain text file.
%I A319989 #8 Dec 20 2018 23:17:20
%S A319989 1,1,1,1,1,1,1,2,2,1,1,3,1,1,3,2,1,2,1,3,3,1,1,4,2,1,2,3,1,1,1,2,3,1,
%T A319989 1,4,1,1,2,3,1,2,1,2,4,1,1,4,1,1,3,3,1,2,2,4,3,1,1,5,1,1,3,2,2,2,1,3,
%U A319989 3,1,1,5,1,1,4,3,1,2,1,4,2,1,1,6,2,1,2,3,1,3,2,2,2,1,1,5,1,2,4,4,1,1,1,4,5
%N A319989 a(n) = A303757(A252463(n)).
%H A319989 Antti Karttunen, <a href="/A319989/b319989.txt">Table of n, a(n) for n = 1..65537</a>
%F A319989 a(n) = A303757(A252463(n)).
%t A319989 Block[{s = Table[Which[n == 1, 1, EvenQ@n, n/2, True, Times @@ Power[Which[# == 1, 1, # == 2, 1, True, NextPrime[#, -1]] & /@ First@ #, Last@ #] &@ Transpose@ FactorInteger@ n], {n, 120}], t}, t = EulerPhi@ Range@ Max@ s; Map[Function[n, Count[t[[2 ;; n]], _?(# == t[[n]] &)]], s] /. 0 -> 1] (* _Michael De Vlieger_, Nov 23 2018 *)
%o A319989 (PARI)
%o A319989 up_to = 65537;
%o A319989 ordinal_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), pt); for(i=1, length(invec), if(mapisdefined(om,invec[i]), pt = mapget(om, invec[i]), pt = 0); outvec[i] = (1+pt); mapput(om,invec[i],(1+pt))); outvec; };
%o A319989 Aux303757(n) = if(1==n,0,eulerphi(n));
%o A319989 v303757 = ordinal_transform(vector(up_to,n,Aux303757(n)));
%o A319989 A303757(n) = v303757[n];
%o A319989 A064989(n) = {my(f); f = factor(n); if((n>1 && f[1,1]==2), f[1,2] = 0); for (i=1, #f~, f[i,1] = precprime(f[i,1]-1)); factorback(f)};
%o A319989 A252463(n) = if(!(n%2),n/2,A064989(n));
%o A319989 A319989(n) = A303757(A252463(n));
%Y A319989 Cf. A252463, A303757.
%Y A319989 Cf. also A319699, A319700, A319703, A320107, A320111.
%K A319989 nonn
%O A319989 1,8
%A A319989 _Antti Karttunen_, Nov 22 2018