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!)
A245388 n such that n - tau(n) is a perfect square. 3
1, 2, 3, 4, 8, 11, 24, 83, 85, 125, 152, 156, 175, 227, 297, 365, 443, 445, 533, 584, 600, 629, 847, 924, 965, 969, 1036, 1091, 1304, 1308, 1458, 1523, 1612, 1685, 1800, 1853, 1960, 2027, 2316, 2340, 2409, 2605, 2716, 2813, 3029, 3251, 3729, 3973, 4108, 4233 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
n - tau(n) = A049820(n) is the number of positive integers < n that do not divide n.
LINKS
EXAMPLE
4 - tau(4) = 4 - 3 = 1^2 so 4 is in the sequence.
MAPLE
filter:= proc(n) local t;
t:= numtheory:-tau(n);
issqr(n-t)
end proc;
select(filter, [$1..10^4]);
MATHEMATICA
Select[Range[10^4], IntegerQ[Sqrt[# - DivisorSigma[0, #]]]&] (* Jean-François Alcover, Apr 12 2019 *)
PROG
(Sage)
def is_A245388(n):
a = sloane.A000005
return is_square(n - a(n))
A245388_list = lambda up_to: filter(is_A245388, (1..up_to))
A245388_list(4333) # Peter Luschny, Jul 20 2014
CROSSREFS
Sequence in context: A280195 A286224 A361313 * A164573 A360706 A064418
KEYWORD
nonn
AUTHOR
Robert Israel, Jul 20 2014
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 June 13 00:51 EDT 2024. Contains 373362 sequences. (Running on oeis4.)