cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A324880 Even numbers k such that A324863(k) = A324874(k).

Original entry on oeis.org

16, 64, 90, 256, 484, 490, 750, 756, 810, 988, 1000, 1024, 1296, 1440, 2116, 2622, 2662, 3630, 3710, 4004, 4116, 4624, 4896, 4900, 5880, 6426, 6724, 6760, 7290, 7744, 7840, 7920, 8100, 8924, 9604, 10000
Offset: 1

Views

Author

Antti Karttunen, Mar 27 2019

Keywords

Comments

Of 36 such numbers found in the range 1..10000, the following ten: 90, 490, 750, 810, 2622, 2662, 3630, 3710, 6426, 7290, are such that a positive integer of the form 4m+1 is produced when A156552 is applied to them: 45, 105, 117, 189, 225, 405, 765, 2205, 2565, 262185 (when sorted into ascending order). See also A324647.

Crossrefs

Programs

  • PARI
    for(n=1,10000,if(!(n%2)&&A324863(n)==A324874(n), print1(n,", ")));