login

Revision History for A088290

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Prime numbers in which the sum of the external digits = the sum of the internal digits.
(history; published version)
#14 by OEIS Server at Wed Oct 30 12:19:49 EDT 2024
LINKS

Robert Israel, <a href="/A088290/b088290_1.txt">Table of n, a(n) for n = 1..10000</a>

#13 by Alois P. Heinz at Wed Oct 30 12:19:49 EDT 2024
STATUS

proposed

approved

Discussion
Wed Oct 30
12:19
OEIS Server: Installed first b-file as b088290.txt.
#12 by Robert Israel at Wed Oct 30 12:18:31 EDT 2024
STATUS

editing

proposed

#11 by Robert Israel at Wed Oct 30 12:18:22 EDT 2024
LINKS

Robert Israel, <a href="/A088290/b088290_1.txt">Table of n, a(n) for n = 1..10000</a>

MAPLE

filter:= proc(n) local L, i;

if not isprime(n) then return false fi;

L:= convert(n, base, 10);

L[1] + L[-1] = add(L[i], i=2..nops(L)-1)

end proc:

select(filter, [seq(i, i=101..10^4, 2)]); # Robert Israel, Oct 30 2024

STATUS

approved

editing

#10 by Michael De Vlieger at Thu Sep 19 16:34:17 EDT 2024
STATUS

proposed

approved

#9 by Andrew Howroyd at Thu Sep 19 15:18:31 EDT 2024
STATUS

editing

proposed

#8 by Andrew Howroyd at Thu Sep 19 14:46:38 EDT 2024
OFFSET

0,1

1,1

CROSSREFS

Primes in A101317.

EXTENSIONS

Offset changed by Andrew Howroyd, Sep 19 2024

STATUS

approved

editing

Discussion
Thu Sep 19
15:18
Andrew Howroyd: A list
#7 by N. J. A. Sloane at Thu Dec 05 19:56:34 EST 2013
AUTHOR

_Amarnath Murthy (amarnath_murthy(AT)yahoo.com), _, Sep 29 2003

Discussion
Thu Dec 05
19:56
OEIS Server: https://oeis.org/edit/global/2075
#6 by Charles R Greathouse IV at Thu Nov 21 12:48:14 EST 2013
MATHEMATICA

edidQ[n_]:=Module[{idn=IntegerDigits[n]}, idn[[1]]+idn[[-1]]==Total[Most[ Rest[idn]]]]; Select[Prime[Range[169, 3000]], edidQ] (* From _Harvey P. Dale, _, Apr 20 2012 *)

Discussion
Thu Nov 21
12:48
OEIS Server: https://oeis.org/edit/global/2062
#5 by Harvey P. Dale at Fri Apr 20 10:44:35 EDT 2012
STATUS

editing

approved