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!)
A036438 Integers which can be written as m*tau(m) for some m, where tau = A000005. 5
1, 4, 6, 10, 12, 14, 22, 24, 26, 27, 32, 34, 38, 40, 46, 56, 58, 60, 62, 72, 74, 75, 80, 82, 84, 86, 88, 94, 104, 106, 108, 118, 120, 122, 132, 134, 136, 140, 142, 146, 147, 152, 156, 158, 166, 168, 178, 184, 192, 194, 202, 204, 206, 214, 218, 220, 226, 228, 232 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Invented by the HR concept formation program.
LINKS
S. Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2, 1999, #2.
EXAMPLE
10 = 5 * tau(5).
PROG
(PARI) isok(n) = {for (k=1, n, if (k*numdiv(k) == n, return (1)); ); return (0); } \\ Michel Marcus, Dec 09 2014
(PARI)
up_to = 65536;
A036438list(up_to) = { my(v=vector(up_to), m = Map()); for(n=1, #v, mapput(m, n*numdiv(n), n)); my(k=0, u=0); while((k<#v)&&(u<#v), u++; if(mapisdefined(m, u), k++; v[k] = u)); vector(k, i, v[i]); };
v036438 = A036438list(up_to);
A036438(n) = v036438[n]; \\ Antti Karttunen, Jul 18 2020
CROSSREFS
Range of A038040.
Sequence in context: A114331 A102070 A026402 * A338519 A066190 A058012
KEYWORD
easy,nonn
AUTHOR
Simon Colton (simonco(AT)cs.york.ac.uk)
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 May 14 03:19 EDT 2024. Contains 372528 sequences. (Running on oeis4.)