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!)
A299790 Positive integers that do not equal any number minus its number of factorizations. 0
3, 9, 15, 21, 26, 29, 34, 35, 38, 39, 43, 45, 50, 51, 54, 57, 62, 69, 74, 86, 87, 90, 98, 101, 103, 107, 110, 111, 114, 118, 123, 124, 134, 135, 137, 142, 146, 151, 152, 155, 158, 161, 163, 170, 173, 174, 179, 186, 188, 189, 191, 194, 197, 206, 214, 218, 220, 221, 227, 229, 230, 231, 237, 239, 242, 244, 246, 248 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(PARI) fcnt(n, m) = {local(s); s=0; if(n == 1, s=1, fordiv(n, d, if(d > 1 & d <= m, s=s+fcnt(n/d, d)))); s};
f(n) = n - fcnt(n, n);
is(n) = j=1; x=2^(floor(log(n)/log(2))+2); while(j<x&&f(j)!=n, j++); f(j)!=n; \\ Jinyuan Wang, Feb 14 2019
CROSSREFS
Cf. A001055 (number of factorizations).
Sequence in context: A324298 A194041 A029506 * A030594 A032676 A366849
KEYWORD
nonn
AUTHOR
Aidan Clarke, Jan 21 2019
EXTENSIONS
More terms from Jinyuan Wang, Feb 14 2019
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 26 12:36 EDT 2024. Contains 371997 sequences. (Running on oeis4.)