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!)
A320513 Squarefree k > 1 with sigma(sigma(sigma(k))) < 3*k + 1. 2
3, 97, 217, 241, 337, 577, 889, 1249, 1393, 1501, 3361, 3697, 3937, 4039, 4801, 5587, 6961, 7471, 8191, 9481, 10657, 14449, 16177, 16561, 17887, 18049, 18157, 22459, 23527, 23761, 24301, 25273, 25537, 29617, 29977, 30607, 31249, 32257, 33607, 37537, 37981 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
with(numtheory, sigma):
isA320513 := n -> (n > 1) and issqrfree(n) and (sigma(sigma(sigma(n))) < 3*n+1):
S := select(isA320513, [$1..100000]);
MATHEMATICA
Rest[Select[Range[100000], SquareFreeQ[#] && DivisorSigma[1, DivisorSigma[1, DivisorSigma[1, #]]] < 3*# + 1 &]] (* Vaclav Kotesovec, Oct 14 2018 *)
PROG
(PARI) isok(n) = (n>1) && issquarefree(n) && (sigma(sigma(sigma(n))) < 3*n + 1); \\ Michel Marcus, Oct 14 2018
CROSSREFS
Sequence in context: A107173 A100494 A209554 * A320517 A348491 A243155
KEYWORD
nonn
AUTHOR
Peter Luschny, Oct 14 2018
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 24 14:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)