Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A133198

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

Showing entries 1-10 | older changes
Triangular numbers such that moving the last digit to the front produces a square.
(history; published version)
#14 by Susanna Cuyler at Tue May 07 17:41:21 EDT 2019
STATUS

proposed

approved

#13 by Michel Marcus at Tue May 07 00:53:05 EDT 2019
STATUS

editing

proposed

#12 by Michel Marcus at Tue May 07 00:53:02 EDT 2019
CROSSREFS
STATUS

proposed

editing

#11 by Jon E. Schoenfield at Tue May 07 00:51:17 EDT 2019
STATUS

editing

proposed

#10 by Jon E. Schoenfield at Tue May 07 00:50:49 EDT 2019
NAME

Triangular numbers such that moving the last digit to the front produces a square number.

EXAMPLE

3240 is a triangular number, 0324 is a square number - hence , so 3240 belongs to this sequence.

MAPLE

a:=proc(n) local n2, L: n2:=convert((1/2)*n*(n+1), base, 10): L:=nops(n2): if type(sqrt((1/20)*n*(n+1)-(1/10)*n2[1]+n2[1]*10^(L-1)), integer)=true then (1/2)*n*(n+1) else end if end proc: seq(a(n), n=1..10^7); - _# _Emeric Deutsch_, Oct 17 2007

STATUS

approved

editing

#9 by Bruno Berselli at Thu May 12 10:25:00 EDT 2016
STATUS

proposed

approved

#8 by Giovanni Resta at Thu May 12 10:18:24 EDT 2016
STATUS

editing

proposed

#7 by Giovanni Resta at Wed May 11 09:57:37 EDT 2016
DATA

1, 10, 3240, 464166, 1043290, 5740966, 335936160, 428264011, 3529890253, 4015289691, 108170400250, 821266581691, 2216062991691, 34830532944360, 2453718234672253, 6017966241009003, 11215323437683690, 214486304402280015, 446417240103777645, 1792095001020995616

LINKS

Giovanni Resta, <a href="/A133198/b133198.txt">Table of n, a(n) for n = 1..100</a>

CROSSREFS

Cf. A133197.

EXTENSIONS

a(20) from Giovanni Resta, May 11 2016

STATUS

approved

editing

#6 by Russ Cox at Fri Mar 30 18:49:09 EDT 2012
AUTHOR

_Tanya Khovanova (tanyakh(AT)yahoo.com), _, Oct 09 2007

Discussion
Fri Mar 30
18:49
OEIS Server: https://oeis.org/edit/global/235
#5 by Russ Cox at Fri Mar 30 17:36:15 EDT 2012
MAPLE

a:=proc(n) local n2, L: n2:=convert((1/2)*n*(n+1), base, 10): L:=nops(n2): if type(sqrt((1/20)*n*(n+1)-(1/10)*n2[1]+n2[1]*10^(L-1)), integer)=true then (1/2)*n*(n+1) else end if end proc: seq(a(n), n=1..10^7); - _Emeric Deutsch (deutsch(AT)duke.poly.edu), _, Oct 17 2007

EXTENSIONS

More terms from _Emeric Deutsch (deutsch(AT)duke.poly.edu), _, Oct 17 2007

Discussion
Fri Mar 30
17:36
OEIS Server: https://oeis.org/edit/global/173