editing
proposed
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
editing
proposed
Numbers whose hexadecimal representation matches the regular expression [1-9][0-9]*e[0-9]+. - Eric M. Schmidt, Sep 28 2023
(C)
#include <stdbool.h>
#define DIGIT_E 14
bool isA262222(int k)
{
if (k <= 0 || k % 16 == DIGIT_E) return false;
bool foundE = false;
int digit;
while (k > 0) {
digit = k % 16;
if (digit == DIGIT_E) {
if (foundE) return false;
foundE = true;
}
else if (digit > 9) return false;
k /= 16;
}
return foundE && digit != DIGIT_E;
} // Eric M. Schmidt, Sep 28 2023
approved
editing
editing
proposed
Wikipedia, <a href="https://en.wikipedia.org/wiki/As_I_was_going_to_St_Ives">As I was going to St Ives</a>.
approved
editing
editing
proposed
editing
proposed
editing
proposed
editing
proposed
Thomas Breuer, <a href="http://www.math.rwth-aachen.de/~Thomas.Breuer/genus/doc/errata.pdf">Errata et addenda Addenda for Characters and automorphism groups Automorphism Groups of Compact Riemann surfacesSurfaces</a>.
proposed
editing
Thomas Breuer, <a href="http://www.math.rwth-aachen.de/~Thomas.Breuer/genus/doc/errata.pdf">Errata et addenda Addenda for Characters and automorphism groups Automorphism Groups of Compact Riemann surfacesSurfaces</a>.
proposed
editing