(Translated by https://www.hiragana.jp/)
A373087 - 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!)
A373087 k is term if k is a square and its odd part is divisible by exactly two distinct primes. 2
225, 441, 900, 1089, 1225, 1521, 1764, 2025, 2601, 3025, 3249, 3600, 3969, 4225, 4356, 4761, 4900, 5625, 5929, 6084, 7056, 7225, 7569, 8100, 8281, 8649, 9025, 9801, 10404, 12100, 12321, 12996, 13225, 13689, 14161, 14400, 15129, 15876, 16641, 16900, 17424, 17689, 18225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence b with terms b(n)=2*sqrt(a(n)) is a subsequence of A098904. - Hugo Pfoertner, Jun 01 2024
LINKS
FORMULA
a(n) = Sum_{k=2..n+3} LegendreSymbol(n, prime(k)).
EXAMPLE
8100 is term because (8100 / 2^2) = 3^4 * 5^2.
MAPLE
isA := k -> issqr(k) and nops(NumberTheory:-PrimeFactors(k/2^padic[ordp](k, 2))) = 2: A := select(isA, [seq(1..19000)]);
MATHEMATICA
Select[Range[200]^2, PrimeNu[#/2^IntegerExponent[#, 2]] == 2 &] (* Paolo Xausa, Jul 10 2024 *)
PROG
(PARI) isok(k) = issquare(k) && (omega(k/2^valuation(k, 2)) == 2); \\ Michel Marcus, May 31 2024
CROSSREFS
Sequence in context: A207640 A267892 A363217 * A216419 A246199 A147276
KEYWORD
nonn
AUTHOR
Peter Luschny, May 23 2024
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 August 26 14:45 EDT 2024. Contains 375456 sequences. (Running on oeis4.)