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!)
A344771 Ordinal transform of A342915, where A342915(n) = gcd(1+n, psi(n)). 2
1, 1, 1, 2, 1, 3, 1, 2, 1, 4, 1, 5, 1, 3, 2, 6, 1, 7, 1, 4, 2, 8, 1, 9, 3, 5, 2, 10, 1, 11, 1, 6, 4, 12, 2, 13, 1, 7, 3, 14, 1, 15, 1, 1, 5, 16, 1, 17, 6, 8, 3, 18, 1, 19, 4, 9, 7, 20, 1, 21, 1, 10, 2, 22, 2, 23, 1, 11, 8, 24, 1, 25, 1, 12, 4, 26, 3, 27, 1, 2, 9, 28, 1, 29, 10, 13, 5, 30, 1, 31, 5, 14, 11, 32, 2, 33, 1, 15 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Number of values of k, 1 <= k <= n, with A342915(k) = A342915(n).
a(p) = 1 for all primes p (and for some other numbers as well).
LINKS
FORMULA
a(n) <= A344773(n).
MATHEMATICA
psi[n_] := If[n= 1, 1, Times@@((#1+1)*#1^(#2-1)& @@@ FactorInteger[n])];
A342915[n_] := GCD[n+1, psi[n]];
b[_] = 0;
a[n_] := a[n] = With[{t = A342915[n]}, b[t] = b[t]+1];
Array[a, 105] (* Jean-François Alcover, Dec 22 2021 *)
PROG
(PARI)
up_to = 65537;
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; };
A001615(n) = if(1==n, n, my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1)));
A342915(n) = gcd(1+n, A001615(n));
v344771 = ordinal_transform(vector(up_to, n, A342915(n)));
A344771(n) = v344771[n];
CROSSREFS
Differs from A339914 for the first time at n=44, where a(44) = 1, while A339914(44) = 8.
Sequence in context: A285324 A308551 A194550 * A339914 A242923 A065704
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 31 2021
STATUS
approved

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 June 11 23:47 EDT 2024. Contains 373319 sequences. (Running on oeis4.)