OFFSET
1,1
COMMENTS
Previous name: Sequence of integers n>=2 such that there is an integer k>1 with k divides n and k divides (n/k)+1.
The first square in the sequence is 1225.
First squares are 1225, 8100, 25600, 46225. - Zak Seidov, Nov 14 2012
LINKS
Zak Seidov, Table of n, a(n) for n = 1..10000
J. Malenfant, On the Matrix-Element Expansion of a Circulant Determinant, arXiv preprint arXiv:1502.06012 [math.NT], 2015.
EXAMPLE
2 is a term since 2 divides 2 and 2/2 + 1.
6 is a term since 3 divides 6 and 6/3 + 1.
MATHEMATICA
okQ[n_] := Sum[Divisible[n/d+1, d] // Boole, {d, Divisors[n] // Rest}] > 0;
Select[Range[140], okQ] (* Jean-François Alcover, Aug 10 2018 *)
PROG
(PARI) isok(n) = sumdiv(n, d, (d>1) && !(((n/d)+1) % d)) >= 1; \\ Michel Marcus, May 08 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Juan Lopez Gonzalez (e44625(AT)estudiante.uam.es), Jun 14 2008
EXTENSIONS
Number 37 corrected to 38 by Zak Seidov, Nov 14 2012
New name from Michel Marcus, May 08 2018
STATUS
approved