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!)
A338383 Table read by rows, in which the n-th row lists all the preimages k, in increasing order, such that k*tau(k) = A338382(n). 3

%I #22 Mar 31 2023 08:14:39

%S 18,27,24,32,56,64,90,135,126,189,120,160,198,297,168,192,224,234,351,

%T 306,459,342,513,264,352,280,320,414,621,312,416,400,500,522,783,408,

%U 544,558,837,456,608,666,999,450,675,360,432,552,736,738,1107,774,1161,616,704

%N Table read by rows, in which the n-th row lists all the preimages k, in increasing order, such that k*tau(k) = A338382(n).

%C The map k -> k*tau(k) = m is not injective (A038040) and this sequence lists, in increasing order of m, the preimages of the integers m that have more than one preimage.

%D Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section B12, p. 102-103.

%D D. Wells, The Penguin Dictionary of Curious and Interesting Numbers, Revised Edition, Penguin Books, London, England, 1997, entry 168, page 127.

%e The table begins:

%e 18, 27;

%e 24, 32;

%e 56, 64;

%e 90, 135;

%e 126, 189;

%e 120, 160;

%e 198, 297;

%e 168, 192, 224;

%e ...

%e 1st row is (18, 27) because 18 * tau(18) = 27 * tau(27) = 108 = A338382(1).

%e 2nd row is (24, 32) because 24 * tau(24) = 32 * tau(32) = 192 = A338382(2).

%e 8th row is (168, 192, 224), because 168 * tau(168) = 192 * tau(192) = 224 * tau(224) = 2688 = A338382(8); it is the first row with 3 preimages.

%o (PARI) upto(n) = {m = Map(); res = List(); n = n\2; w = []; for(i = 1, n, c = i*numdiv(i); if(mapisdefined(m, c), listput(res, c); l = mapget(m, c); listput(l, i); mapput(m, c, l) , mapput(m, c, List(i)); ) ); listsort(res, 1); v = select(x -> x <= 2*(n+1), res); for(i = 1, #v, w = concat(w, Vec(mapget(m, v[i]))) ); w; } \\ _Michel Marcus_, Oct 27 2020

%Y Cf. A000005, A038040, A327166, A338381, A338382, A338384, A338385.

%Y Cf. A337874 (similar for k*sigma(k)).

%K nonn,tabf

%O 1,1

%A _Bernard Schott_, Oct 26 2020

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 9 23:14 EDT 2024. Contains 372354 sequences. (Running on oeis4.)