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.

Showing 1-4 of 4 results.

A333011 Integers which can be written in only one way as a sum of two distinct nonzero pentagonal numbers.

Original entry on oeis.org

6, 13, 17, 23, 27, 34, 36, 40, 47, 52, 56, 57, 63, 71, 73, 75, 82, 86, 92, 93, 97, 104, 105, 114, 118, 121, 122, 127, 129, 139, 143, 146, 150, 152, 157, 162, 167, 168, 177, 180, 181, 187, 188, 196, 198, 209, 222, 227, 232, 237, 245, 246, 248, 252, 259, 261, 262
Offset: 1

Views

Author

Olivier Gérard, Mar 05 2020

Keywords

Comments

The first term of A332988 not in this sequence is 211.

Crossrefs

Programs

  • PARI
    is(k) = sum(i=1, sqrt(1+12*k)\6, sqrt(1+24*k+12*i-36*i*i)%6==5) == 1; \\ Jinyuan Wang, Mar 06 2020

A333012 Integers which can be written in exactly two ways as a sum of two distinct nonzero pentagonal numbers.

Original entry on oeis.org

211, 215, 381, 447, 602, 663, 766, 807, 853, 874, 1002, 1172, 1197, 1248, 1259, 1372, 1427, 1457, 1571, 1612, 1622, 1639, 1652, 1665, 1752, 1862, 1927, 1996, 2047, 2152, 2245, 2297, 2302, 2332, 2351, 2415, 2472, 2497, 2506, 2523, 2618, 2887, 2912, 2952
Offset: 1

Views

Author

Olivier Gérard, Mar 05 2020

Keywords

Examples

			211 = P(5) + P(11) = P(1) + P(12) = 35 + 176 = 1 + 210, where P(n) is the n-th pentagonal number A000326.
		

Crossrefs

Programs

  • PARI
    is(k) = sum(i=1, sqrt(1+12*k)\6, sqrt(1+24*k+12*i-36*i*i)%6==5) == 2; \\ Jinyuan Wang, Mar 06 2020

A333014 Numbers which can written in exactly four ways as a sum of two distinct nonzero pentagonal numbers.

Original entry on oeis.org

13352, 18877, 45397, 49052, 52027, 53727, 62652, 64182, 73152, 74977, 76677, 79327, 80671, 85177, 87972, 88577, 90702, 91652, 93302, 96669, 98827, 101752, 106036, 106822, 109227, 109487, 116117, 118477, 125347, 133267, 135786, 138087, 138802, 140852, 141532, 144747, 145302, 145641, 147274, 148077, 148927
Offset: 1

Views

Author

Olivier Gérard, Mar 05 2020

Keywords

Examples

			13352 = P(52) + P(79) = P(29) + P(90) = P(17) + P(93) = P(10) + P(94), where P(n) is the n-th pentagonal number A000326.
		

Crossrefs

Programs

  • PARI
    is(k) = sum(i=1, sqrt(1+12*k)\6, sqrt(1+24*k+12*i-36*i*i)%6==5) == 4; \\ Jinyuan Wang, Mar 06 2020

A333015 Numbers which can be written in exactly five ways as a sum of two distinct nonzero pentagonal numbers.

Original entry on oeis.org

205427, 210552, 230102, 269712, 333802, 346977, 354537, 384802, 397892, 416677, 420077, 426622, 448552, 470902, 471927, 478302, 509752, 520852, 563772, 566177, 569507, 571377, 575202, 580302, 586102, 590162, 599847, 610052, 616552, 618263, 635552, 646177, 647947
Offset: 1

Views

Author

Olivier Gérard, Mar 05 2020

Keywords

Examples

			205427 = P(234) + P(287) = P(201) + P(311) = P(166) + P(331) = P(56) + P(366) = P(49) + P(367), where P(n) is the n-th pentagonal number (A000326).
		

Crossrefs

Programs

  • PARI
    is(k) = sum(i=1, sqrt(1+12*k)\6, sqrt(1+24*k+12*i-36*i*i)%6==5) == 5; \\ Jinyuan Wang, Mar 06 2020

Extensions

More terms from Jinyuan Wang, Mar 06 2020
Showing 1-4 of 4 results.