OFFSET
1,2
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
EXAMPLE
4 = 2*2 is present as 2^2 > 2.
6 = 2*3 is present as 2^2 > 3.
70 = 2*5*7 is present as 5^2 > 7.
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A253567 (MATCHING-POS 1 1 (lambda (n) (or (< (A001222 n) 2) (not (numbers-sparsely-distributed? (ifactor n)))))))
(define (numbers-sparsely-distributed? lista) (cond ((null? lista) #t) ((null? (cdr lista)) #t) ((> (A000290 (car lista)) (cadr lista)) #f) (else (numbers-sparsely-distributed? (cdr lista)))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 16 2015
STATUS
approved