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!)
A331181 Number of values of k, 1 <= k <= n, with A033879(k) = A033879(n), where A033879(n) is the deficiency of n, 2n-sigma(n). 4
1, 2, 1, 3, 1, 1, 1, 4, 1, 2, 1, 1, 1, 2, 2, 5, 1, 1, 1, 1, 2, 1, 1, 1, 1, 3, 1, 2, 1, 2, 1, 6, 2, 2, 2, 1, 1, 2, 3, 1, 1, 3, 1, 3, 2, 1, 1, 1, 1, 1, 2, 3, 1, 4, 1, 1, 1, 1, 1, 1, 1, 2, 4, 7, 2, 5, 1, 4, 2, 2, 1, 1, 1, 2, 2, 3, 2, 6, 1, 1, 2, 2, 1, 1, 1, 2, 1, 3, 1, 1, 2, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 7, 1, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Ordinal transform of A033879, or equally, of A033880, or of A286449.
LINKS
MATHEMATICA
b[_] = 0;
a[n_] := With[{t = 2 n - DivisorSigma[1, n]}, b[t] = b[t] + 1];
Array[a, 105] (* Jean-François Alcover, Jan 10 2022 *)
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; };
A033879(n) = (2*n-sigma(n));
v331181 = ordinal_transform(vector(up_to, n, A033879(n)));
A331181(n) = v331181[n];
CROSSREFS
Cf. also A331180, A331182.
Sequence in context: A331184 A333768 A306922 * A344593 A353278 A328917
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 11 2020
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 April 18 11:52 EDT 2024. Contains 371779 sequences. (Running on oeis4.)